forked from choojs/choo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "nanochoo",
"version": "6.13.0",
"description": "choo but half the size",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"dist",
"example",
"lib/server.js",
"lib/browser.js"
],
"browser": {
"./index.js": "./lib/browser.js",
"assert": "nanoassert"
},
"scripts": {
"build": "mkdir -p dist/ && browserify index -s choo -p bundle-collapser/plugin > dist/bundle.js && browserify index -p tinyify > dist/bundle.min.js && cat dist/bundle.min.js | gzip --best --stdout | wc -c | pretty-bytes",
"deps": "dependency-check .",
"inspect": "browserify --full-paths index -g unassertify -g uglifyify | discify --open",
"prepublishOnly": "npm run build",
"start": "bankai start example",
"test": "standard && npm run deps && node test.js"
},
"repository": "heyitsmeuralex/nanochoo",
"keywords": [
"client",
"frontend",
"framework",
"minimal",
"composable",
"tiny"
],
"license": "MIT",
"dependencies": {
"nanoassert": "^1.1.0",
"nanobus": "^4.2.0",
"nanomorph": "^5.1.2",
"nanoquery": "^1.1.0",
"nanoraf": "^3.0.0"
},
"devDependencies": {
"@types/node": "^8.0.20",
"browserify": "^14.3.0",
"bundle-collapser": "^1.2.1",
"dependency-check": "^2.8.0",
"discify": "^1.6.0",
"hyperscript": "^2.0.2",
"nanohtml": "^1.2.4",
"pretty-bytes-cli": "^2.0.0",
"spok": "^0.8.1",
"standard": "^10.0.0",
"tape": "^4.6.3",
"tinyify": "^2.2.0",
"uglify-es": "^3.0.17",
"uglifyify": "^4.0.1",
"unassertify": "^2.0.4"
}
}