-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "monoapp",
"version": "3.0.0",
"description": "choo architecture without a renderer",
"main": "index.js",
"scripts": {
"build": "mkdir -p dist/ && browserify index -s Monoapp -p bundle-collapser/plugin > dist/bundle.js && browserify index -s Monoapp -p tinyify > dist/bundle.min.js && cat dist/bundle.min.js | gzip --best --stdout | wc -c | pretty-bytes",
"inspect": "browserify --full-paths index -p tinyify | discify --open",
"prepublish": "npm run build",
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"test": "standard --fix && standard && npm run deps"
},
"repository": "jongacnik/monoapp",
"keywords": [
"choo",
"client",
"frontend",
"framework",
"minimal",
"composable",
"tiny"
],
"author": "Jon Gacnik <[email protected]>",
"license": "MIT",
"dependencies": {
"document-ready": "^2.0.1",
"nanobus": "^4.2.0",
"nanohref": "^3.0.0",
"nanoquery": "^1.1.0",
"nanoraf": "^3.0.0",
"nanorouter": "^4.0.0",
"nanotiming": "^7.0.0",
"scroll-to-anchor": "^1.0.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"browserify": "^16.2.3",
"bundle-collapser": "^1.3.0",
"dependency-check": "^4.0.0",
"discify": "^1.6.3",
"pretty-bytes-cli": "^2.0.0",
"spok": "^1.0.0",
"standard": "^13.0.1",
"tape": "^5.0.0",
"tinyify": "^2.4.3",
"uglifyify": "^5.0.1",
"uglifyjs": "^2.4.11",
"unassertify": "^2.1.1"
}
}