-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "choop",
"version": "3.2.1",
"description": "Choo x Preact",
"main": "index.js",
"scripts": {
"build": "mkdir -p dist/ && browserify index -p bundle-collapser/plugin > dist/bundle.js && browserify index -g unassertify -g uglifyify -p bundle-collapser/plugin | uglifyjs > dist/bundle.min.js && zopfli -i 100 dist/bundle.min.js && wc -c < dist/bundle.min.js.gz | pretty-bytes",
"deps": "dependency-check --entry ./html.js . && dependency-check . --extra --no-dev --entry ./html.js",
"inspect": "browserify --full-paths index -g unassertify -g uglifyify | discify --open",
"prepublish": "npm run build",
"start": "bankai start example",
"test": "standard && npm run deps && node test.js"
},
"repository": "choojs/choop",
"keywords": [
"choo",
"preact",
"client",
"frontend",
"framework",
"minimal",
"composable",
"tiny",
"power",
"modules",
"lolreact",
"lolol",
"react",
"no seriously",
"lol"
],
"license": "MIT",
"dependencies": {
"document-ready": "^2.0.1",
"hyperx": "^2.4.0",
"nanobus": "^4.3.5",
"nanohref": "^3.1.0",
"nanoquery": "^1.2.0",
"nanoraf": "^3.1.0",
"nanorouter": "^3.1.1",
"nanotiming": "^7.3.1",
"preact": "^8.3.1",
"preact-render-to-string": "^4.1.0",
"scroll-to-anchor": "^1.1.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"browserify": "^16.2.3",
"bundle-collapser": "^1.3.0",
"dependency-check": "^3.2.1",
"discify": "^1.6.3",
"node-zopfli": "^2.0.2",
"pretty-bytes-cli": "^2.0.0",
"spok": "^0.9.1",
"standard": "^12.0.1",
"tape": "^4.9.1",
"uglifyify": "^5.0.1",
"uglifyjs": "^2.4.11",
"unassertify": "^2.1.1"
}
}