Files
buuh/package.json
T

35 lines
832 B
JSON
Raw Normal View History

2016-05-10 23:23:33 +07:00
{
"name": "choo",
2016-05-11 15:26:35 +07:00
"version": "1.0.2",
2016-05-10 23:23:33 +07:00
"description": "A framework for creating solid web applications",
"main": "index.js",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"test": "standard && npm run deps && NODE_ENV=test node test",
"test:cov": "standard && npm run deps && NODE_ENV=test istanbul cover test.js"
},
"repository": "yoshuawuyts/choo",
"keywords": [
"client",
"frontend",
"framework",
"minimal",
"composable",
"tiny"
],
"license": "MIT",
2016-05-11 13:51:17 +07:00
"dependencies": {
"global": "^4.3.0",
"send-action": "^1.1.0",
"sheet-router": "^2.0.4",
"xtend": "^4.0.1",
"yo-yo": "^1.2.0"
},
2016-05-10 23:23:33 +07:00
"devDependencies": {
"dependency-check": "^2.5.1",
"istanbul": "^0.4.3",
"standard": "^6.0.8",
"tape": "^4.5.1"
}
}