-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "final-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"unit-test": "open SpecRunner.html",
"feature-test": "./node_modules/cypress/bin/cypress run --spec cypress/integration/examples/*",
"view-feature-test": "npx cypress open",
"istanbul": "node ./node_modules/.bin/istanbul cover src/*",
"eslint": "./node_modules/.bin/eslint src/*",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarkChanner/final-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MarkChanner/final-project/issues"
},
"homepage": "https://github.com/MarkChanner/final-project#readme",
"dependencies": {
"chai-colors": "^1.0.1",
"express": "^4.16.3"
},
"devDependencies": {
"cypress": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"istanbul": "^0.4.5"
},
"engines": {
"node": "8.11.3"
}
}