-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
43 lines (43 loc) · 1 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": "colorjoe",
"description": "Scaleable color picker",
"author": "Juho Vepsalainen <[email protected]>",
"version": "4.2.0",
"dependencies": {
"dragjs": "^0.8.0",
"onecolor": "^3.0.5"
},
"devDependencies": {
"rollup": "^0.61.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://[email protected]/bebraw/colorjoe.git"
},
"homepage": "https://bebraw.github.com/colorjoe",
"bugs": {
"url": "https://github.com/bebraw/colorjoe/issues"
},
"keywords": [
"color",
"colour",
"requirejs",
"amd"
],
"main": "dist/colorjoe.js",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bebraw/colorjoe/blob/master/LICENSE"
}
],
"scripts": {
"postversion": "npm run build && git commit --allow-empty -am \"Update dist\"",
"build": "rollup -c",
"start": "rollup -c --watch"
}
}