-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.43 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
44
45
{
"name": "jsonbuffer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run build-only && npm run test-with-coverage",
"test-with-coverage": "rimraf ./coverage && nyc mocha --require chai-autoload-plugins --color --exit --timeout 120000 --recursive ./build/spec && rimraf ./.nyc_output",
"test-mocha": "mocha --require chai-autoload-plugins --color --exit --timeout 120000 --recursive ./build/spec",
"test-tsmocha": "ts-mocha --require chai-autoload-plugins --color --exit --timeout 120000 --recursive './src/spec/*.ts' --preserve-symlinks",
"build": "npm run build-only && npm run test-with-coverage",
"build-only": "rimraf ./build && npm run tsc",
"tsc": "tsc -p .",
"start": "node build/index.js",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.2",
"@types/node": "^12.12.6",
"@types/sinon": "^7.0.13",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"chai": "^4.2.0",
"chai-autoload-plugins": "^0.1.0",
"eslint": "^7.6.0",
"mocha": "^8.1.1",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"chaiAutoloadPlugins": {
"exclude": [
"@types/sinon-chai"
]
}
}