-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "lower-albina",
"description": "exploratory mapping project",
"version": "0.0.0",
"author": "Nikolas Wise <[email protected]> (http://nikolas.io/)",
"devDependencies": {
"chroma-js": "^0.6.3",
"diff-dom": "^1.1.0",
"http-server": "^0.10.0",
"imagemin-newer": "^1.0.1",
"node-sass": "^4.5.2",
"npm-run-all": "^3.1.1",
"rerun-script": "^0.6.0",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"tiny-emitter": "^1.0.0"
},
"dependencies": {
"hapi": "~8.2.0"
},
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/nikolaswise/lower-albina.git"
},
"watches": {
"js": "src/js/**",
"sass": "src/sass/**",
"img": "src/img/**"
},
"scripts": {
"start": "npm run dev",
"dev": "npm-run-all --parallel sass js serve watch",
"serve": "http-server ./",
"js": "rollup -c",
"watch": "rerun-script",
"img": "imagemin-newer src/img/ dist",
"predev": "npm run prepublish",
"prepublish": "npm run js && npm run sass",
"sass": "node-sass src/sass/*.scss --include-path node_modules/ -o dist/"
}
}