-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 KB
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
56
{
"name": "data-fields",
"version": "5.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && zuul -- ./tests/*.js",
"test-local": "npm run lint && zuul --local 8080 -- ./tests/*.js",
"budo": "budo examples/index.js --dir examples --live",
"example": "npm run build-example && npm run budo",
"build-example": "npm run build-example-js & npm run build-example-css ",
"build-example-js": "browserify examples/index.js > examples/bundle.js",
"build-example-css": "postcss -u autoprefixer -o examples/bundle.css examples/index.css",
"deploy": "npm run build-example && gh-pages -d examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/editdata/data-fields.git"
},
"keywords": [
"virtual-dom",
"data",
"element",
"dom"
],
"author": "sethvincent",
"license": "MIT",
"bugs": {
"url": "https://github.com/editdata/data-fields/issues"
},
"homepage": "https://github.com/editdata/data-fields#readme",
"dependencies": {
"addhttp": "^1.0.0",
"data-field-classname": "^1.0.0",
"leaflet": "^0.7.7",
"leaflet-draw": "^0.2.4",
"list-editor": "^2.0.0",
"object-array-converter": "^1.0.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"browserify": "^13.0.0",
"budo": "^8.1.0",
"data-form": "^1.1.1",
"gh-pages": "^0.11.0",
"postcss-cli": "^2.5.1",
"standard": "^6.0.7",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"virtual-dom": "^2.1.1",
"virtual-raf": "^3.0.0",
"zuul": "^3.10.0"
}
}