This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"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"
}