-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 749 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 749 Bytes
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
{
"name": "sample-image-colors",
"version": "1.0.0",
"description": "",
"author": "",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "webpack --display-modules && cpx './*.{html,css}' dist --clean",
"watch": "webpack --watch --hide-modules & cpx './*.{html,css}' dist --clean --watch",
"publish": "npm run build && git subtree push --prefix dist origin gh-pages"
},
"repository": {},
"dependencies": {
"chroma-js": "^1.3.6"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-env": "^1.6.1",
"cpx": "^1.5.0",
"eslint": "^3.14.1",
"eslint-config-squarespace": "^1.0.0",
"webpack": "^3.10.0"
}
}