UNPKG

b-o-a

Version:
71 lines (70 loc) 1.78 kB
{ "name": "b-o-a", "description": "A simple framework", "version": "0.9.0", "author": { "name": "bouzuya", "email": "m@bouzuya.net", "url": "http://bouzuya.net" }, "ava": { "files": [ ".tmp/test" ], "source": [ "!**/*.js" ] }, "bugs": { "url": "https://github.com/bouzuya/b-o-a/issues" }, "dependencies": { "boa-core": "0.8.0", "boa-handler-dom": "0.7.0", "boa-handler-history": "0.7.0", "boa-handler-init": "0.6.0", "boa-handler-request": "0.5.0" }, "devDependencies": { "ava": "0.14.0", "parallelshell": "2.0.0", "rxjs": "5.0.0-beta.6", "typescript": "1.8.10", "typings": "0.8.1", "watch": "0.17.1" }, "files": [ "index.js", "index.d.ts", "handlers" ], "homepage": "https://github.com/bouzuya/b-o-a#readme", "keywords": [ "b-o-a", "boa" ], "license": "MIT", "main": "./index.js", "peerDependencies": { "rxjs": ">=5.0.0-alpha.0 <=5.x" }, "repository": { "type": "git", "url": "https://github.com/bouzuya/b-o-a" }, "scripts": { "build": "tsc && npm run cp", "clean": "rm -rf index.* handlers/ .tmp/", "cp": "parallelshell 'npm run cp1' 'npm run cp2'", "cp1": "cp -R .tmp/src/index.* ./", "cp2": "cp -R .tmp/src/handlers/* handlers/", "md1": "[ -d .tmp/src/handlers ] || mkdir -p .tmp/src/handlers", "md2": "[ -d handlers ] || mkdir handlers", "prebuild": "parallelshell 'npm run md1' 'npm run md2'", "prepublish": "typings install && npm run clean && npm run build", "test": "ava", "watch": "parallelshell 'tsc --watch' 'npm run watch-cp' 'ava -- watch", "watch-cp": "watch --ignoreUnreadable --wait 2 'npm run cp' .tmp/src/" }, "typings": "./index.d.ts" }