-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"private": true,
"author": "Rolf Timmermans",
"name": "tfw",
"version": "7.2.0",
"main": "application.js",
"license": "UNLICENSED",
"engines": {
"node": ">=8"
},
"files": [
"application.js",
"decorate.js",
"errors.js",
"lib"
],
"scripts": {
"test": "tslint --project . --format verbose && nyc mocha && tsc",
"fix": "tslint --project . --fix",
"build": "rm -rf lib && tsc"
},
"dependencies": {
"ajv": "^8.6",
"content-type": "^1.0.2",
"cookies": "^0.8.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/content-type": "^1.1.3",
"@types/cookies": "^0.7.7",
"@types/mocha": "^9.0",
"@types/node": "^16.11",
"app-module-path": "^2.2.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.9.0",
"babel-plugin-syntax-async-generators": "^6.9.0",
"babel-plugin-transform-class-properties": "^6.9.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.9.0",
"babel-plugin-transform-export-extensions": "^6.9.0",
"babel-plugin-transform-flow-strip-types": "^6.9.0",
"babel-plugin-transform-function-bind": "^6.9.0",
"babel-plugin-transform-strict-mode": "^6.9.0",
"benchmark": "^2.1.0",
"chai": "^4.1.0",
"mocha": "^9.0",
"nyc": "^15.0",
"source-map-support": "^0.5.11",
"timekeeper": ">= 0",
"ts-node": "^10.0",
"tslint": "^6.0",
"typescript": "^4.1"
},
"mocha": {
"spec": "test/unit/**/*.js",
"use_strict": true,
"require": [
"ts-node/register",
"babel-register",
"test"
],
"recursive": true,
"timeout": 4000,
"exit": true,
"reporter": "list"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
}
}