-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.49 KB
/
package.json
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
39
40
41
42
43
{
"name": "@lievendoclo/tsrest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "run-s compile test lint",
"clean": "run-p clean:compile clean:run",
"clean:compile": "rimraf \"index.{d.ts,js}{,.map}\" \"{lib,test}/**/*.{d.ts,js}{,.map}\" lib/typings/types.ts",
"clean:dist": "run-s clean clean:npm",
"clean:npm": "rimraf node_modules",
"clean:run": "rimraf *-v8.log profile.txt log",
"compile": "tsc --project .",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"start": "node index.js",
"test": "mocha --require espower-typescript/guess --require source-map-support/register \"test/**/*.test.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\""
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/power-assert": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"chokidar": "^3.0.2",
"eslint": "^6.4.0",
"espower-typescript": "^9.0.2",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"supervisor": "^0.12.0",
"ts-node": "^8.3.0",
"typed-rest-client": "^1.5.0",
"typescript": "^3.6.3"
},
"author": "Lieven Doclo",
"license": "Apache",
"dependencies": {
"@types/express": "^4.17.1",
"express": "^4.17.1"
}
}