-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "personal-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"buildCss": "sass --watch scss/main.scss:public/styles/main.css",
"coverage": "istanbul cover ./tests/**/*.js",
"devStart": "nodemon ./server/start.js",
"start": "node ./server/start.js",
"test": "./node_modules/tape/bin/tape tests/**/*.js | tap-spec",
"postinstall": "node tests/e2e/nightwatch.conf.js",
"e2e": "./node_modules/.bin/nightwatch --config tests/e2e/nightwatch.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skibinska/personal-website.git"
},
"author": "Ewelina Skibinska",
"license": "MIT",
"bugs": {
"url": "https://github.com/skibinska/personal-website/issues"
},
"homepage": "https://github.com/skibinska/personal-website#readme",
"dependencies": {
"hapi": "^16.1.0",
"inert": "^4.1.0",
"normalize-scss": "^6.0.0"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.4.5",
"nightwatch": "^0.9.12",
"nodemon": "^1.11.0",
"selenium-download": "^2.0.9",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
},
"engines": {
"node": "6.9.1"
}
}