-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.78 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "mocha-chai-sinon-codelab",
"version": "1.0.0",
"description": "Learning testing with Mocha, Chai, Sinon By Examples",
"main": "",
"dependencies": {
"@azure/service-bus": "^1.1.1",
"@google-cloud/storage": "^4.1.3",
"async": "^3.1.0",
"aws-sdk": "^2.591.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"co": "^4.6.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"glob": "^7.1.6",
"google-auth-library": "^5.5.1",
"inversify": "^5.0.1",
"jquery": "^3.5.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.2",
"lodash": "^4.17.19",
"maxmind": "^4.0.0",
"moment": "^2.24.0",
"multer": "^1.4.2",
"mysql2": "^2.0.2",
"node-cache": "^5.0.2",
"node-cron": "^2.0.3",
"pg": "^7.13.0",
"pg-promise": "^10.3.1",
"pubnub": "^4.27.2",
"pubsub-js": "^1.7.0",
"redux-saga": "^1.1.3",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/chai-as-promised": "^7.1.2",
"@types/co": "^4.6.2",
"@types/express": "^4.17.2",
"@types/jquery": "^3.3.31",
"@types/jsdom": "^12.2.4",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/pg": "^7.14.1",
"@types/proxyquire": "^1.3.28",
"@types/pubnub": "^4.27.1",
"@types/pubsub-js": "^1.5.18",
"@types/request": "^2.48.3",
"@types/request-promise": "^4.1.45",
"@types/sinon": "^7.5.0",
"@types/superagent": "^4.1.4",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-mocha": "^6.2.1",
"husky": "^3.1.0",
"jsdom": "^15.2.1",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"superagent": "^5.1.2",
"supertest": "^4.0.2",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"scripts": {
"test": "mocha --spec './src/**/?(*.)+(spec|test).[jt]s?(x)'",
"test:coverage": "nyc npm t",
"test:single": "mocha",
"test:s:c": "nyc npm run test:single",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "eslint --ext .js,.ts --fix ./src",
"prettify": "prettier --config ./.prettierrc --write \"./{src,__{tests,mocks}__}/**/*.{ts,js}\""
},
"keywords": [
"unit test",
"stub",
"mock",
"spy",
"chai",
"sinon",
"chai-http",
"integration test"
],
"author": "mrdulin <[email protected]>"
}