-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "memview-device-api",
"version": "1.0.0",
"description": "Simple file cache server supporting HTTP PUT and GET requests.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --require @babel/register \"src/**/*.test.ts\"",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --ignore \"src/**/*.spec.js\",\"src/**/*.test.js\""
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"engines": {
"node": "^10.13.0"
},
"dependencies": {
"express": "^4.16.4"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/chai-http": "^3.0.5",
"@types/express": "^4.16.0",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"typescript": "^3.1.6"
}
}