Files
buuh/package.json
T

68 lines
1.9 KiB
JSON
Raw Normal View History

2016-05-10 23:23:33 +07:00
{
"name": "choo",
2018-03-30 18:49:08 +02:00
"version": "6.11.0-preview1",
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",
"index.d.ts",
2017-09-19 19:43:37 +01:00
"html/index.js",
"html/raw.js",
2017-10-20 22:30:13 +09:00
"html/index.d.ts",
2018-03-30 18:19:06 +02:00
"component/cache.js",
"component/index.js",
2017-07-27 02:30:48 +09:00
"dist",
"example"
],
2016-05-10 23:23:33 +07:00
"scripts": {
2017-11-01 15:35:03 +01:00
"build": "mkdir -p dist/ && browserify index -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",
2018-03-30 18:19:06 +02:00
"deps": "dependency-check --entry ./html/index.js . && dependency-check . --extra --no-dev --entry ./html/index.js --entry ./component/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
},
2017-10-31 12:36:06 +01:00
"repository": "choojs/choo",
2016-05-10 23:23:33 +07:00
"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",
2018-03-30 18:19:06 +02:00
"nanocomponent": "^6.5.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",
2018-03-30 18:19:06 +02:00
"nanolru": "^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",
"nanorouter": "^3.0.1",
2018-02-13 21:08:38 +00:00
"nanotiming": "^7.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",
"hyperscript": "^2.0.2",
2017-03-31 22:17:53 +02:00
"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-11-01 15:35:03 +01:00
"tinyify": "^2.2.0",
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
}
}