-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "form-elements",
"version": "2.3.3",
"description": "Form elements for HTML-element based systems",
"main": "form-elements.js",
"scripts": {
"test": "standard && npm run dep && node test/ssr-rendering.js && browserify test/*.spec.js | tape-run",
"coverage": "npm run test && node test-harness.js",
"start": "bankai start standalone.js --debug --no-uglify",
"dep": "dependency-check . && dependency-check . --unused --no-dev -i envify -i babelify -i babel-preset-env -i sheetify"
},
"browserify": {
"transform": [
"envify",
"nanohtml",
"sheetify/transform",
"babelify"
]
},
"keywords": [
"bel",
"choo",
"forms",
"form",
"validation"
],
"author": "Todd Kennedy <todd@selfassembled.org>",
"license": "Apache-2.0",
"dependencies": {
"babel-preset-env": "^1.5.2",
"babelify": "^7.3.0",
"envify": "^4.0.0",
"nanohtml": "^1.2.4",
"sheetify": "^7.3.3"
},
"devDependencies": {
"bankai": "^9.14.0",
"browserify": "^14.3.0",
"browserify-istanbul": "github:toddself/browserify-istanbul#strip-base-path",
"dependency-check": "^2.9.1",
"istanbul": "^0.4.5",
"nanobus": "^4.0.0",
"opener": "^1.4.3",
"run-series": "^1.1.4",
"standard": "^10.0.2",
"tape": "^4.6.3",
"tape-istanbul": "^1.1.1",
"tape-run": "^4.0.0"
}
}