-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "malette",
"version": "1.0.0",
"directories": {
"app": "public"
},
"scripts": {
"static": "cp -a ./static/. ./public/",
"build": "npm run static && rollup -c",
"start": "npm run static && rollup -c -w",
"deploy": "npm run static && NODE_ENV=production rollup -c",
"serve": "http-server-spa public index.html 8080"
},
"author": "Luke Jackson <lukejacksonn@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015-rollup": "^3.0.0",
"http-server-spa": "^1.2.0",
"postcss-nested": "^1.0.0",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-postcss": "^0.2.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0"
},
"dependencies": {
"clipboard": "^1.5.15",
"whatwg-fetch": "^2.0.1"
},
"description": "A color picker tool for the google material design palette",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lukejacksonn/malette.git"
},
"bugs": {
"url": "https://github.com/lukejacksonn/malette/issues"
},
"homepage": "https://github.com/lukejacksonn/malette#readme"
}