-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 947 Bytes
/
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
{
"name": "ps0",
"private": true,
"engines": {
"node": "^14.15.x",
"vscode": "^1.59.0"
},
"scripts": {
"compile": "tsc",
"start": "tsc && node -r source-map-support/register dist/src/Main.js",
"test": "tsc && npx mocha --require source-map-support/register dist/test",
"lint": "tsc && npx eslint . --ext .ts"
},
"mocha": {
"reporter": "spec",
"exit": true
},
"dependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.25",
"assert": "^2.0.0",
"mocha": "^9.1.1",
"open": "^7.4.0",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"typescript": "^4.4.2"
}
}