-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.49 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.49 KB
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": "validation_module",
"version": "1.0.0",
"description": "Testing of validation module and Jade templating",
"main": "bundle.js",
"scripts": {
"test": "tape ./test/**/*-test.js | faucet",
"lint": "eslint ./scripts/**/*.js && jscs ./scripts --reporter=console && jsinspect -t 60 ./scripts",
"browserify": "browserify -t [jadeify --pretty false] scripts/main.js > ./bundle.js -d",
"watchify": "watchify scripts/main.js -o ./bundle.js -t jadeify -d --verbose",
"watch": "npm-scripts-watcher",
"livereload": "live-reload ./scripts/ ./styles/main.css --port 9090",
"endpoint": "json-server --watch data/db.json",
"serve": "superstatic ./ --port 8080 --host 127.0.0.1",
"start": "parallelshell \"npm run watch\" \"npm run serve\" \"npm run endpoint\" \"npm run livereload\" \"start chrome http://localhost:8080\""
},
"watch": {
"scripts/**/*.{js,jade}": [
"watchify"
]
},
"author": "barteks",
"license": "ISC",
"dependencies": {
"basscss": "^7.0.4"
},
"devDependencies": {
"browserify": "^12.0.1",
"eslint": "^2.1.0",
"eslint-config-airbnb": "^5.0.1",
"faucet": "0.0.1",
"fetchival": "^0.3.1",
"jade": "^1.11.0",
"jadeify": "^4.5.0",
"jscs": "^2.7.0",
"jsinspect": "^0.7.2",
"json-server": "^0.8.8",
"live-reload": "^1.1.0",
"npm": "^3.7.2",
"npm-scripts-watcher": "^1.0.2",
"parallelshell": "^2.0.0",
"superstatic": "^4.0.1",
"tape": "^4.4.0",
"watchify": "^3.6.1"
}
}