Files
buuh/package.json
T

41 lines
1.0 KiB
JSON
Raw Normal View History

2016-05-10 23:23:33 +07:00
{
"name": "choo",
2017-03-22 20:43:16 +01:00
"version": "5.0.1",
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": {
2017-03-21 03:00:45 +01:00
"deps": "dependency-check --entry ./html.js . && dependency-check . --extra --no-dev --entry ./html.js",
"start": "bankai start example --open",
"test": "standard && npm run deps && node test.js",
"build:dev": "echo 'to be implemented'",
"build:min": "echo 'to be implemented'",
"prepublish": "npm run build:dev && npm run build:min"
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-03-21 03:00:45 +01:00
"bel": "^4.5.1",
"document-ready": "^2.0.0",
2017-03-21 03:00:45 +01:00
"global": "^4.3.1",
"nanobus": "^2.1.0",
"nanomorph": "^4.0.0",
"nanomount": "^1.0.0",
"nanoraf": "^3.0.0",
"nanorouter": "^2.0.0"
2016-05-11 13:51:17 +07:00
},
2016-05-10 23:23:33 +07:00
"devDependencies": {
2017-03-21 03:00:45 +01:00
"dependency-check": "^2.8.0",
"spok": "^0.7.0",
"standard": "^9.0.1",
"tape": "^4.6.3"
2016-05-10 23:23:33 +07:00
}
}