Files
buuh/package.json
T

82 lines
2.2 KiB
JSON
Raw Normal View History

2016-05-10 23:23:33 +07:00
{
"name": "choo",
2016-08-29 05:07:47 +02:00
"version": "3.2.2",
2016-07-06 09:24:47 +02:00
"description": "A 5kb framework for creating sturdy frontend applications",
2016-05-10 23:23:33 +07:00
"main": "index.js",
"scripts": {
2016-07-12 16:11:04 +02:00
"deps": "./scripts/test deps",
"test:electron": "./scripts/test electron",
"test:cov": "./scripts/test cov",
"test:server": "./scripts/test server",
"test:browser": "./scripts/test browser",
"test:browser-local": "./scripts/test browser-local",
"preversion": "if [ ! -z $SKIP_TEST ]; then npm run test:browser; fi",
2016-07-01 11:38:53 +02:00
"test": "npm run test:electron",
2016-07-12 15:24:36 +02:00
"build:dev": "./scripts/build dev",
"build:min": "./scripts/build min",
"prepublish": "npm run build:dev && npm run build:min",
"instrument:discify": "./scripts/instrument discify",
"instrument:minified": "./scripts/instrument minified",
"instrument:gzip": "./scripts/instrument gzip"
2016-05-10 23:23:33 +07:00
},
"repository": "yoshuawuyts/choo",
"keywords": [
"client",
"frontend",
"framework",
"minimal",
"composable",
"tiny"
],
2016-07-01 11:38:53 +02:00
"files": [
"index.js",
"http.js",
2016-07-13 02:01:51 +02:00
"html.js",
"dist/"
2016-07-01 11:38:53 +02:00
],
2016-05-10 23:23:33 +07:00
"license": "MIT",
2016-05-11 13:51:17 +07:00
"dependencies": {
2016-07-24 22:01:31 +01:00
"barracks": "^8.1.1",
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",
2016-07-18 12:58:41 +02:00
"nanoraf": "^2.1.1",
2016-06-04 15:03:56 -04:00
"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",
"bankai": "^3.1.0",
2016-05-12 12:59:27 +07:00
"browserify": "^13.0.1",
"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-07-12 23:05:54 +02:00
"disc": "^1.3.2",
2016-07-01 11:38:53 +02:00
"envify": "^3.4.1",
2016-05-25 04:05:12 +09:00
"es2020": "^1.0.1",
"geval": "~2.1.1",
2016-07-12 23:05:54 +02:00
"gzip-size-cli": "^1.0.0",
2016-08-29 05:07:27 +02:00
"insert-css": "^1.0.0",
"istanbul": "^0.4.4",
"min-document": "~2.18.0",
"pretty-bytes-cli": "^2.0.0",
"proxyquire": "~1.7.10",
"proxyquire-universal": "~1.0.8",
"proxyquireify": "~3.2.0",
"server-router": "^3.0.0",
2016-08-29 05:07:27 +02:00
"sheetify": "^5.1.0",
"standard": "^8.0.0",
2016-05-12 12:59:27 +07:00
"tachyons": "^4.0.0-beta.19",
"tape": "^4.5.1",
"tape-istanbul": "~1.0.2",
2016-07-02 12:58:46 -07:00
"tape-run": "~2.1.4",
2016-07-01 11:38:53 +02:00
"uglifyify": "^3.0.2",
"uglifyjs": "^2.4.10",
"unassertify": "^2.0.3",
2016-07-01 14:26:37 +02:00
"yo-yoify": "^3.1.0",
"zuul": "toddself/zuul"
2016-05-10 23:23:33 +07:00
}
}