Files
buuh/package.json
T

60 lines
1.9 KiB
JSON
Raw Normal View History

2016-05-10 23:23:33 +07:00
{
"name": "choo",
2017-10-05 16:51:37 -04:00
"version": "6.4.0",
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",
2017-07-27 02:30:48 +09:00
"files": [
"index.js",
2017-09-19 19:43:37 +01:00
"html/index.js",
"html/raw.js",
2017-07-27 02:30:48 +09:00
"dist",
"example"
],
2016-05-10 23:23:33 +07:00
"scripts": {
2017-07-26 19:31:15 +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 --mangle-props -c unsafe,properties,dead_code,comparisons,evaluate,hoist_funs,if_return,join_vars,pure_getters,reduce_vars,collapse_vars --toplevel > dist/bundle.min.js && cat dist/bundle.min.js | gzip --best --stdout | wc -c | pretty-bytes",
2017-09-19 19:43:37 +01:00
"deps": "dependency-check --entry ./html/index.js . && dependency-check . --extra --no-dev --entry ./html/index.js",
2017-03-31 22:17:53 +02:00
"inspect": "browserify --full-paths index -g unassertify -g uglifyify | discify --open",
"prepublishOnly": "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-10-03 18:39:36 -03:00
"bel": "^5.1.3",
2017-03-30 12:20:57 +02:00
"document-ready": "^2.0.1",
2017-06-28 15:53:37 +02:00
"nanobus": "^4.2.0",
2017-07-03 10:48:38 +02:00
"nanohref": "^3.0.0",
2017-07-01 13:50:14 +02:00
"nanolocation": "^1.0.0",
2017-06-28 15:53:37 +02:00
"nanomorph": "^5.1.2",
2017-06-29 17:20:00 +02:00
"nanoquery": "^1.1.0",
2017-03-21 03:00:45 +01:00
"nanoraf": "^3.0.0",
2017-06-28 15:53:37 +02:00
"nanorouter": "^2.0.0",
"nanotiming": "^6.0.0",
2017-07-11 15:07:53 +02:00
"scroll-to-anchor": "^1.0.0",
"xtend": "^4.0.1"
2016-05-11 13:51:17 +07:00
},
2016-05-10 23:23:33 +07:00
"devDependencies": {
2017-10-05 16:51:09 -04:00
"@types/node": "^8.0.20",
"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",
"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",
2017-06-28 15:53:37 +02:00
"uglify-es": "^3.0.17",
"uglifyify": "^4.0.1",
2017-03-31 22:17:53 +02:00
"unassertify": "^2.0.4"
2016-05-10 23:23:33 +07:00
}
}