-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 870 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
{
"name": "paser-from-scratch",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "gulp",
"build-only": "gulp build-only",
"test": "nyc mocha test/*.ts --require ts-node/register",
"lint": "eslint src test"
},
"author": "Tang Jiaxing ([email protected])",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"assert": "^2.0.0",
"eslint": "^8.22.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.3.0",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}