Files
buuh/package.json
T

50 lines
1.5 KiB
JSON
Raw Normal View History

2016-05-10 23:23:33 +07:00
{
"name": "choo",
2017-05-20 18:52:40 +02:00
"version": "5.6.1",
2017-03-30 11:38:50 +02:00
"description": "A 4kb framework for creating sturdy frontend applications",
2016-05-10 23:23:33 +07:00
"main": "index.js",
"scripts": {
2017-03-31 22:17:53 +02:00
"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",
2017-03-21 03:00:45 +01:00
"deps": "dependency-check --entry ./html.js . && dependency-check . --extra --no-dev --entry ./html.js",
2017-03-31 22:17:53 +02:00
"inspect": "browserify --full-paths index -g unassertify -g uglifyify | discify --open",
"prepublish": "npm run build",
2017-04-26 13:52:34 +02:00
"start": "bankai start example",
2017-03-31 22:17:53 +02:00
"test": "standard && npm run deps && node test.js"
2016-05-10 23:23:33 +07:00
},
"repository": "yoshuawuyts/choo",
"keywords": [
"client",
"frontend",
"framework",
"minimal",
"composable",
"tiny"
],
"license": "MIT",
2016-05-11 13:51:17 +07:00
"dependencies": {
2017-03-21 03:00:45 +01:00
"bel": "^4.5.1",
2017-03-30 12:20:57 +02:00
"document-ready": "^2.0.1",
2017-04-19 13:02:43 +02:00
"nanobus": "^3.1.0",
2017-04-14 17:10:21 +02:00
"nanohistory": "^1.0.0",
"nanohref": "^1.0.0",
2017-03-21 03:00:45 +01:00
"nanomorph": "^4.0.0",
"nanomount": "^1.0.0",
"nanoraf": "^3.0.0",
"nanorouter": "^2.0.0"
2016-05-11 13:51:17 +07:00
},
2016-05-10 23:23:33 +07:00
"devDependencies": {
"browserify": "^14.3.0",
2017-03-31 22:17:53 +02:00
"bundle-collapser": "^1.2.1",
2017-03-21 03:00:45 +01:00
"dependency-check": "^2.8.0",
2017-03-31 22:17:53 +02:00
"discify": "^1.6.0",
"node-zopfli": "^2.0.2",
"pretty-bytes-cli": "^2.0.0",
"spok": "^0.8.1",
2017-04-07 18:19:23 +02:00
"standard": "^10.0.0",
2017-03-31 22:17:53 +02:00
"tape": "^4.6.3",
"uglifyify": "^3.0.4",
"uglifyjs": "^2.4.10",
"unassertify": "^2.0.4"
2016-05-10 23:23:33 +07:00
}
}