2016-05-10 23:23:33 +07:00
|
|
|
{
|
|
|
|
|
"name": "choo",
|
2016-06-25 12:23:56 +02:00
|
|
|
"version": "2.3.1",
|
2016-05-25 15:03:32 +09:00
|
|
|
"description": "A 7kb framework for creating sturdy frontend applications",
|
2016-05-10 23:23:33 +07:00
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2016-05-22 16:58:14 +09:00
|
|
|
"deps": "dependency-check . && dependency-check . --extra --no-dev -i xhr",
|
2016-07-03 17:05:03 -07:00
|
|
|
"test:electron": "browserify tests/**/*.js -t es2020 -p proxyquire-universal | tape-run",
|
|
|
|
|
"test:cov": "browserify tests/**/*.js -t es2020 -p proxyquire-universal -p tape-istanbul/plugin | tape-run | tape-istanbul && istanbul report",
|
2016-06-29 08:06:04 -07:00
|
|
|
"test:server": "standard && npm run deps && NODE_ENV=test node tests/server/*",
|
|
|
|
|
"test:browser": "standard && npm run deps && NODE_ENV=test zuul tests/browser/*",
|
|
|
|
|
"test:browser:local": "standard && npm run deps && NODE_ENV=test zuul --local 8080 -- tests/browser/*",
|
2016-07-01 10:27:39 -07:00
|
|
|
"preversion": "if [ ! -z $SKIP_TEST ]; then npm run test:browser; fi",
|
2016-07-03 17:26:17 -07:00
|
|
|
"test": "npm run test:electron"
|
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": {
|
2016-06-27 01:04:21 +02:00
|
|
|
"barracks": "^7.0.3",
|
2016-07-05 16:21:00 +02:00
|
|
|
"document-ready": "~1.0.2",
|
2016-05-11 13:51:17 +07:00
|
|
|
"global": "^4.3.0",
|
2016-06-04 15:03:56 -04:00
|
|
|
"hash-match": "^1.0.2",
|
|
|
|
|
"sheet-router": "^3.1.0",
|
2016-05-13 12:24:51 +07:00
|
|
|
"xhr": "^2.2.0",
|
2016-05-11 13:51:17 +07:00
|
|
|
"xtend": "^4.0.1",
|
2016-07-02 00:13:13 +02:00
|
|
|
"yo-yo": "^1.2.2"
|
2016-05-11 13:51:17 +07:00
|
|
|
},
|
2016-05-10 23:23:33 +07:00
|
|
|
"devDependencies": {
|
2016-07-04 09:09:43 -07:00
|
|
|
"append-child": "~1.0.0",
|
2016-05-12 12:59:27 +07:00
|
|
|
"bankai": "^2.0.2",
|
|
|
|
|
"browserify": "^13.0.1",
|
2016-06-29 08:06:04 -07:00
|
|
|
"browserify-istanbul": "^2.0.0",
|
2016-05-25 04:05:12 +09:00
|
|
|
"bundle-collapser": "^1.2.1",
|
2016-05-10 23:23:33 +07:00
|
|
|
"dependency-check": "^2.5.1",
|
2016-05-25 04:05:12 +09:00
|
|
|
"es2020": "^1.0.1",
|
2016-07-03 17:05:03 -07:00
|
|
|
"geval": "~2.1.1",
|
2016-05-12 12:59:27 +07:00
|
|
|
"insert-css": "^0.2.0",
|
2016-06-29 08:06:04 -07:00
|
|
|
"istanbul": "^0.4.4",
|
|
|
|
|
"karma-sauce-launcher": "^1.0.0",
|
2016-07-03 13:34:44 -07:00
|
|
|
"min-document": "~2.18.0",
|
2016-07-03 17:05:03 -07:00
|
|
|
"proxyquire": "~1.7.10",
|
|
|
|
|
"proxyquire-universal": "~1.0.8",
|
|
|
|
|
"proxyquireify": "~3.2.0",
|
2016-05-12 12:59:27 +07:00
|
|
|
"server-router": "^2.1.0",
|
|
|
|
|
"sheetify": "^5.0.0",
|
2016-05-22 22:52:45 +09:00
|
|
|
"standard": "^7.1.0",
|
2016-05-12 12:59:27 +07:00
|
|
|
"tachyons": "^4.0.0-beta.19",
|
2016-06-29 08:06:04 -07:00
|
|
|
"tape": "^4.5.1",
|
2016-07-03 13:23:16 -07:00
|
|
|
"tape-istanbul": "~1.0.2",
|
2016-07-02 12:58:46 -07:00
|
|
|
"tape-run": "~2.1.4",
|
2016-07-01 14:26:37 +02:00
|
|
|
"yo-yoify": "^3.1.0",
|
2016-06-29 08:06:04 -07:00
|
|
|
"zuul": "toddself/zuul"
|
2016-05-10 23:23:33 +07:00
|
|
|
}
|
|
|
|
|
}
|