-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.26 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "app.editdata.org",
"description": "edit data. save it on github.",
"version": "1.0.2",
"repository": {
"url": "git://github.com/editdata/app.editdata.org.git"
},
"main": "app.js",
"scripts": {
"deploy": "npm run bundle:production && staticland . app.editdata.org",
"bundle-css": "cssnext assets/deps.css assets/bundle.css",
"bundle-js:production": "browserify app.js -t [ envify --NODE_ENV production ] -o assets/bundle.js",
"bundle-js:staging": "browserify app.js -t [ envify --NODE_ENV staging ] -o assets/bundle.js",
"bundle:production": "npm run bundle-css && npm run bundle-js:production",
"start": "budo app.js:assets/bundle.js --live --pushstate -- -t [ envify --NODE_ENV development ] -t brfs",
"test": "npm run lint && npm run test:testron",
"test:testron": "browserify ./test | testron | tap-spec",
"test:zuul": "npm run lint && zuul -- ./test",
"lint": "standard ./**/*.js"
},
"browserify": {
"transform": [
"brfs"
]
},
"dependencies": {
"@f/serialize-form": "^1.0.0",
"JSONStream": "^1.0.7",
"base-64": "^0.1.0",
"basscss-grid": "^1.0.4",
"cookie-cutter": "^0.1.1",
"csskit": "^1.1.1",
"csv-parser": "^1.9.1",
"csv-write-stream": "^1.0.0",
"cuid": "^1.3.8",
"data-fields": "^5.0.0",
"data-form": "^3.0.0",
"data-grid": "^3.0.0",
"data-schema": "^1.4.3",
"envify": "^3.4.0",
"file-extension": "^2.0.1",
"from2-array": "0.0.4",
"from2-string": "^1.1.0",
"inherits": "^2.0.1",
"menu-element": "^2.0.0",
"normalize.css": "^3.0.3",
"parse-link-header": "^0.4.1",
"query-string": "^3.0.0",
"sheet-router": "^1.4.1",
"simple-local-storage": "^1.0.3",
"through2": "^2.0.0",
"utf8": "^2.1.1",
"vdom-thunk": "^3.0.0",
"view-list": "^2.1.0",
"virtual-app": "^3.0.0",
"virtual-dom": "^2.1.1",
"virtual-hook": "^1.0.1",
"xhr": "^2.2.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"brfs": "^1.4.2",
"browserify": "^12.0.1",
"budo": "^7.1.0",
"cssnext": "^1.8.4",
"dom-events": "^0.1.1",
"electron-prebuilt": "^0.37.4",
"standard": "^5.4.1",
"surge": "^0.17.4",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"testron": "^1.2.0",
"zuul": "^3.9.0"
}
}