-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "js-unit-testing-framework",
"version": "0.0.1",
"description": "Unit testing Express routes using Mocha",
"main": "index.js",
"scripts": {
"lint": "eslint src/ test/",
"precommit": "npm run lint",
"prepush": "npm run test",
"start": "node .",
"test": "mocha",
"test:watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MarcL/js-unit-testing-framework.git"
},
"keywords": [
"unit",
"testing",
"mocha",
"express",
"routes"
],
"author": "Marc Littlemore",
"license": "MIT",
"homepage": "https://github.com/MarcL/unit-test-express-routes#readme",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"bluebird": "^3.5.0",
"express": "^4.15.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "~6.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "~2.2.0",
"husky": "^0.13.3",
"mocha": "~3.4.1",
"node-mocks-http": "^1.6.1",
"proxyquire": "^1.7.10",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0"
}
}