-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "nt-addon-pay",
"version": "0.5.10",
"description": "The pay addon for notadd application",
"scripts": {
"start": "ts-node -r tsconfig-paths/register starter/main.ts",
"start:watch": "nodemon",
"debug": "node --inspect-brk -r ts-node/register starter/main.ts",
"debug:watch": "nodemon --config nodemon-debug.json",
"check": "tslint -p tsconfig.json -c tslint.json",
"fix": "tslint -p tsconfig.json -c tslint.json --fix",
"test": "jest",
"test:cov": "jest --coverage"
},
"author": "notadd",
"license": "Apache-2.0",
"dependencies": {
"nanoid": "^2.0.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@nestjs/common": "^5.5.0",
"@nestjs/core": "^5.5.0",
"@nestjs/testing": "^5.5.0",
"@types/jest": "^23.3.11",
"@types/nanoid": "^1.2.0",
"@types/node": "^10.12.18",
"@types/xml2js": "^0.4.3",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.service.ts",
"!src/modules/wechat/services/base.service.ts"
],
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}