-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.23 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
46
47
48
49
50
51
52
53
54
55
{
"name": "json-decoder",
"version": "0.6.2",
"main": "lib/index.js",
"types": "dts/index.d.ts",
"license": "MIT",
"dependencies": {
"ajv": "^8.10.0",
"ajv-errors": "^3.0.0",
"debug": "^4.1",
"tslib": "^1.13"
},
"devDependencies": {
"@testdeck/mocha": "^0.2.0",
"@types/chai": "^4.2",
"@types/chai-as-promised": "^7.1",
"@types/debug": "^4.1",
"@types/mocha": "^9.1.0",
"@types/node": "*",
"chai": "^4.2",
"chai-as-promised": "^7.1",
"del": "^3.0.0",
"gulp": "^4.0",
"gulp-sourcemaps": "^2.6",
"gulp-tslint": "^8.1",
"gulp-typescript": "^5.0",
"gulp-watch": "^5.0",
"harmonize": "^2.0",
"mocha": "^9.2.2",
"nyc": "^15.0",
"reflect-metadata": "*",
"run-sequence": "^2.2",
"source-map-support": "^0.5",
"ts-node": "^8.6",
"tslint": "^6.1",
"typescript": "^4.5"
},
"peerDependencies": {
"reflect-metadata": "*"
},
"scripts": {
"build": "rm -rf ./lib; rm -rf ./dts; npx tsc --project ./tsconfig.json",
"test": "nyc mocha -r ts-node/register test/**/*.spec.ts"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
}
}