-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
55 lines (55 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
55
{
"name": "control-panel",
"version": "1.3.4",
"description": "embeddable panel of inputs for parameter setting",
"main": "index.js",
"scripts": {
"start": "watchify-server example.js | garnish",
"test": "standard && browserify test.js | smokestack | tap-spec",
"build": "browserify demo/index.js -o demo/bundle.js",
"deploy": "npm run build && surge demo control-panel.surge.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeman-lab/control-panel.git"
},
"keywords": [
"slider",
"input",
"range",
"checkbox",
"component",
"color-picker",
"dom",
"css"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/freeman-lab/control-panel/issues"
},
"browserify": {
"transform": "brfs"
},
"homepage": "https://github.com/freeman-lab/control-panel#readme",
"dependencies": {
"brfs": "^1.4.3",
"dom-css": "^2.0.0",
"inherits": "^2.0.1",
"insert-css": "^0.2.0",
"is-numeric": "0.0.5",
"is-string": "^1.0.4",
"node-uuid": "^1.4.7",
"param-case": "^1.1.2",
"simple-color-picker": "0.0.9",
"tinycolor2": "^1.3.0"
},
"devDependencies": {
"garnish": "^5.0.1",
"smokestack": "^3.4.1",
"standard": "^7.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"watchify-server": "^1.0.2"
}
}