-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 740 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 740 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
{
"name": "type_errors",
"version": "1.0.0",
"description": "trying to reproduce a vscode bug in minimal env",
"main": "main.js",
"scripts": {
"dev": "nodemon --watch src --watch main.js main.js",
"start": "node main.js",
"test": "nyc mocha --recursive -r test/_setup.test.js -s 3"
},
"author": "Ales Bolka",
"license": "UNLICENSED",
"devDependencies": {
"@types/express": "^4.17.9",
"@types/sinon": "^9.0.10",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.2"
},
"types": "./types/*.d.ts",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1"
}
}