-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "nodeexpress-untitled",
"version": "0.0.1",
"description": "Node/Express Pluralsight Project Sample Application",
"main": "app.js",
"scripts": {
"start": "nodemon ./src/app.js",
"test:module1": "NODE_ENV=test mocha --exit './test/module1/*.spec.js' || true",
"test:module2": "NODE_ENV=test mocha --exit './test/module2/*.spec.js' || true",
"test:module3": "NODE_ENV=test mocha --exit './test/module3/*.spec.js' || true",
"test:module4": "NODE_ENV=test mocha --exit './test/module4/*.spec.js' || true",
"test:module5": "NODE_ENV=test mocha --exit './test/module5/*.spec.js' || true",
"test": "NODE_ENV=test mocha --exit './test/**/*.spec.js' || true"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/tjbell/NodeExpress-Untitled.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjbell/NodeExpress-Untitled/issues"
},
"homepage": "https://github.com/tjbell/NodeExpress-Untitled#readme",
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.3"
},
"devDependencies": {
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.2",
"mocha": "^5.1.1",
"nodemon": "^1.17.4",
"proxyquire": "^2.0.1",
"ramda": "^0.25.0",
"rewire": "^4.0.1",
"sinon": "^6.0.0",
"sinon-chai": "^3.2.0",
"sinon-express-mock": "^2.0.4",
"supertest": "^3.1.0"
}
}