-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "chai-express",
"version": "1.3.0",
"description": "Chai's assertions for Express.",
"main": "build/index.js",
"scripts": {
"test": "mocha",
"test:watch": "npm run test -- --watch",
"build": "babel src -D -s -d build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abelosorio/chai-express.git"
},
"keywords": [
"Chai",
"Express",
"NodeJS",
"Route",
"API",
"REST"
],
"author": "Abel M. Osorio <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/abelosorio/chai-express/issues"
},
"homepage": "https://github.com/abelosorio/chai-express#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"express": "^4.16.3",
"faker": "^4.1.0",
"lodash": "^4.17.5",
"mocha": "^5.1.1",
"sinon-chai": "^3.0.0"
},
"dependencies": {
"sinon": "^4.5.0",
"sinon-express-mock": "^2.0.0"
}
}