-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
39 lines (39 loc) · 915 Bytes
/
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
{
"name": "hcl-picker",
"version": "0.0.0",
"description": "A colorpicker for Data",
"main": "index.js",
"scripts": {
"test": "eslint --no-eslintrc -c .eslintrc index.js src",
"start": "budo index.js --serve=bundle.js --live -d",
"build": "browserify index.js | uglifyjs -c -m > bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tristen/hcl-picker.git"
},
"keywords": [
"hcl",
"color",
"data",
"geo"
],
"author": "@tristen",
"license": "MIT",
"bugs": {
"url": "https://github.com/tristen/hcl-picker/issues"
},
"homepage": "https://github.com/tristen/hcl-picker#readme",
"devDependencies": {
"browserify": "^13.0.0",
"budo": "^8.1.0",
"eslint": "^2.7.0",
"uglify-js": "^2.6.2"
},
"dependencies": {
"clipboard": "^1.5.10",
"d3": "^3.5.16",
"d3-geo": "0.0.0",
"xtend": "^4.0.1"
}
}