-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.72 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
{
"name": "data-editor",
"version": "1.0.0",
"description": "an editor for tabular data built with virtual-dom and base-element",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "tape tests/*.js | tap-spec",
"test-browser": "budo tests/*.js -- -t [ envify --NODE_ENV development ]",
"example-grid-css": "sheetify examples/grid/style.css > examples/grid/bundle.css",
"example-grid": "budo examples/grid/index.js --live --onupdate 'npm run example-grid-css' --dir examples/grid -- -t [ envify --NODE_ENV development ]",
"example-map-css": "sheetify examples/map/style.css > examples/map/bundle.css",
"example-map": "budo examples/map/index.js --live --onupdate 'npm run example-map-css' --dir examples/map -- -t [ envify --NODE_ENV development ]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/editdata/data-editor.git"
},
"keywords": [
"data",
"editor"
],
"author": "sethvincent",
"license": "MIT",
"bugs": {
"url": "https://github.com/editdata/data-editor/issues"
},
"homepage": "https://github.com/editdata/data-editor#readme",
"dependencies": {
"clone": "^1.0.2",
"component-emitter": "^1.2.0",
"cuid": "^1.3.8",
"is-my-json-valid": "^2.12.3",
"type-of": "^2.0.1",
"xtend": "^4.0.1"
},
"devDependencies": {
"budo": "^5.1.5",
"data-form": "github:editdata/data-form",
"data-grid": "editdata/data-grid",
"data-map": "editdata/data-map",
"documentation-readme": "^2.0.0",
"envify": "^3.4.0",
"level-js": "^2.2.2",
"levelup": "^1.2.1",
"mapbox.js": "^2.2.2",
"request": "^2.64.0",
"sheetify": "^2.0.3",
"virtual-dom": "^2.1.1",
"xhr": "^2.1.0"
}
}