implement choo v5 API (#425)

* implement choo v5 API

* fix tests

* 5.0.0-3

* 4kb now

* bump nanomorph

* 5.0.0-4

* fix missing deps stuff

* 5.0.0-5

* fix travis

* fixup! oops standard

* chooexpose

* fix state passing

* fixup! update example

* fixup! incorporate feedback

* fixup! more docs

* fixup! even more docs
This commit is contained in:
Yoshua Wuyts
2017-03-21 03:00:45 +01:00
committed by GitHub
parent 6fc525fe05
commit 8e8e870d45
61 changed files with 807 additions and 2707 deletions
+19 -59
View File
@@ -1,23 +1,15 @@
{
"name": "choo",
"version": "4.1.0",
"version": "5.0.0-5",
"description": "A 5kb framework for creating sturdy frontend applications",
"main": "index.js",
"scripts": {
"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",
"test": "npm run test:electron",
"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"
"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"
},
"repository": "yoshuawuyts/choo",
"keywords": [
@@ -28,53 +20,21 @@
"composable",
"tiny"
],
"files": [
"index.js",
"mount.js",
"html.js",
"dist/"
],
"license": "MIT",
"dependencies": {
"barracks": "^9.1.0",
"document-ready": "~1.0.2",
"global": "^4.3.0",
"nanoraf": "^2.1.1",
"sheet-router": "^4.0.1",
"xtend": "^4.0.1",
"yo-yo": "^1.2.2"
"bel": "^4.5.1",
"document-ready": "^1.0.3",
"global": "^4.3.1",
"nanobus": "^2.1.0",
"nanomorph": "^4.0.0",
"nanomount": "^1.0.0",
"nanoraf": "^3.0.0",
"nanorouter": "^2.0.0"
},
"devDependencies": {
"append-child": "~1.0.0",
"bankai": "^3.1.0",
"browserify": "^13.0.1",
"browserify-istanbul": "^2.0.0",
"bundle-collapser": "^1.2.1",
"dependency-check": "^2.5.1",
"disc": "^1.3.2",
"envify": "^3.4.1",
"es2020": "^1.0.1",
"geval": "~2.1.1",
"gzip-size-cli": "^1.0.0",
"insert-css": "^1.0.0",
"istanbul": "^0.4.4",
"min-document": "~2.19.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",
"sheetify": "^5.1.0",
"standard": "^8.0.0",
"standard-markdown": "^2.2.0",
"tachyons": "^4.0.0-beta.19",
"tape": "^4.5.1",
"tape-istanbul": "~1.0.2",
"tape-run": "~2.1.4",
"uglifyify": "^3.0.2",
"uglifyjs": "^2.4.10",
"unassertify": "^2.0.3",
"yo-yoify": "^3.1.0",
"zuul": "toddself/zuul"
"dependency-check": "^2.8.0",
"spok": "^0.7.0",
"standard": "^9.0.1",
"tape": "^4.6.3"
}
}