forked from anthonyshort/deku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.34 KB
/
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
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
76
77
78
{
"name": "deku",
"version": "2.0.0-rc16",
"license": "MIT",
"repository": "dekujs/deku",
"description": "Render interfaces using pure functions and virtual DOM",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rimraf lib _book",
"build": "babel src --out-dir lib",
"test": "hihat test/index.js -- --debug -t babelify -p tap-dev-tool",
"test:headless": "browserify test/index.js -t babelify | tape-run",
"test:browsers": "zuul -- ./test/index.js",
"test:lint": "standard src/**/*.js test/**/*.js | snazzy",
"docs:install": "gitbook install",
"docs:build": "npm run docs:install && gitbook build",
"docs:serve": "npm run docs:install && gitbook serve",
"docs:deploy": "npm run docs:build && gh-pages -d _book",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run test:lint",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"standalone": "browserify src/index.js -s deku -t babelify -o dist/deku.js",
"example:basic": "budo examples/basic/index.js -- -t babelify"
},
"devDependencies": {
"babel-cli": "6.3.17",
"babel-plugin-transform-react-jsx": "6.1.18",
"babel-polyfill": "6.1.19",
"babel-preset-es2015": "6.1.18",
"babel-preset-stage-2": "6.1.18",
"babelify": "7.2.0",
"browserify": "13.0.0",
"browserify-hmr": "^0.3.1",
"budo": "7.1.0",
"gh-pages": "0.8.0",
"gitbook": "2.6.6",
"hihat": "2.6.4",
"is-dom": "1.0.5",
"rimraf": "2.5.0",
"snazzy": "2.0.1",
"standard": "5.4.1",
"tap-dev-tool": "1.3.0",
"tape": "4.2.2",
"tape-run": "2.1.0",
"trigger-event": "1.0.0",
"zuul": "3.9.0"
},
"dependencies": {
"@f/create-element": "1.0.0",
"@f/empty-element": "^1.0.0",
"@f/foreach": "1.2.2",
"@f/is-function": "1.1.1",
"@f/is-null": "1.0.0",
"@f/is-number": "1.1.1",
"@f/is-string": "1.1.1",
"@f/is-undefined": "1.1.1",
"@f/is-valid-attr": "1.0.0",
"@f/noop": "1.2.0",
"@f/reduce-array": "^0.2.1",
"@f/set-attribute": "1.0.1",
"@f/to-array": "1.1.1",
"dift": "0.1.12",
"index-of": "0.2.0",
"setify": "1.0.3",
"union-type": "0.1.6"
},
"keywords": [
"deku",
"functional",
"react",
"virtual",
"dom",
"elm",
"redux"
]
}