Files
buuh/package.json
T

71 lines
2.1 KiB
JSON
Raw Normal View History

2016-05-10 23:23:33 +07:00
{
"name": "choo",
2019-08-05 15:46:42 +02:00
"version": "7.0.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",
"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"
],
2018-04-04 12:29:01 +02:00
"browser": {
"assert": "nanoassert"
},
2016-05-10 23:23:33 +07:00
"scripts": {
2018-05-23 09:28:38 +01:00
"build": "mkdir -p dist/ && browserify index -s Choo -p bundle-collapser/plugin > dist/bundle.js && browserify index -s Choo -p tinyify > dist/bundle.min.js && cat dist/bundle.min.js | gzip --best --stdout | wc -c | pretty-bytes",
2018-04-04 12:29:01 +02:00
"deps": "dependency-check --entry ./html/index.js . && dependency-check . --extra --no-dev --entry ./html/index.js --entry ./component/index.js -i nanoassert",
2018-10-14 11:06:00 +02:00
"inspect": "browserify --full-paths index -p tinyify | discify --open",
"prepublishOnly": "npm run build",
2017-04-26 13:52:34 +02:00
"start": "bankai start example",
2019-04-02 14:55:21 +02:00
"test": "standard && npm run deps && npm run test:node && npm run test:browser",
"test:node": "node test/node.js | tap-format-spec",
"test:browser": "browserify test/browser.js | tape-run | tap-format-spec"
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-03-30 12:20:57 +02:00
"document-ready": "^2.0.1",
2018-04-04 12:29:01 +02:00
"nanoassert": "^1.1.0",
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",
2018-04-04 12:28:49 +02:00
"nanohtml": "^1.1.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",
2019-06-11 22:51:03 +02:00
"nanorouter": "^4.0.0",
2018-02-13 21:08:38 +00:00
"nanotiming": "^7.0.0",
2019-06-11 21:50:34 +01:00
"scroll-to-anchor": "^1.0.0"
2016-05-11 13:51:17 +07:00
},
2016-05-10 23:23:33 +07:00
"devDependencies": {
2019-04-02 14:55:21 +02:00
"@tap-format/spec": "^0.2.0",
2018-06-05 10:44:46 -04:00
"@types/node": "^10.3.1",
"browserify": "^16.2.2",
2017-03-31 22:17:53 +02:00
"bundle-collapser": "^1.2.1",
2018-06-05 10:44:46 -04:00
"dependency-check": "^3.1.0",
2018-10-14 11:06:00 +02:00
"disc": "^1.3.3",
"hyperscript": "^2.0.2",
2017-03-31 22:17:53 +02:00
"pretty-bytes-cli": "^2.0.0",
2018-06-05 10:44:46 -04:00
"spok": "^0.9.1",
"standard": "^11.0.1",
2017-03-31 22:17:53 +02:00
"tape": "^4.6.3",
2019-04-02 14:55:21 +02:00
"tape-run": "^5.0.0",
2018-10-14 11:06:00 +02:00
"tinyify": "^2.2.0"
2016-05-10 23:23:33 +07:00
}
}