-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 817 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 817 Bytes
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
{
"name": "simple-zone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tsc --noEmit && eslint \"**/*.ts\" --quiet --fix",
"test": "mocha -r ts-node/register **/test/**/*.spec.ts",
"build": "tsc --build",
"serve": "ts-node ./src",
"start": "node ./dist",
"clean": "rimraf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.1.0",
"prettier": "1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {}
}