This repository has been archived by the owner on May 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.94 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
71
72
73
74
75
76
77
78
{
"name": "beater-cli",
"description": "A command-line interface for beater",
"version": "0.2.4",
"author": {
"name": "bouzuya",
"email": "m@bouzuya.net",
"url": "http://bouzuya.net/"
},
"babel": {
"presets": [
"es2015"
]
},
"beater": {
"dir": "./.tmp/es5/test/",
"require": [
"./scripts/enable-power-assert.js"
]
},
"bin": {
"beater": "./bin/beater.sh"
},
"bugs": {
"url": "https://github.com/bouzuya/beater-cli/issues"
},
"dependencies": {
"beater-cli-reporter": "0.4.2",
"beater-reporter": "0.3.0",
"exists-sync": "0.0.3",
"minimist": "1.2.0"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-preset-es2015": "6.9.0",
"beater": "0.4.0",
"cpx": "1.3.1",
"espower-loader": "1.0.0",
"parallelshell": "2.0.0",
"power-assert": "1.4.1",
"proxyquire": "1.7.9",
"sinon": "1.17.4",
"typescript": "1.8.10",
"typings": "1.3.0",
"watch": "0.18.0"
},
"files": [
"bin/",
"lib/"
],
"homepage": "https://github.com/bouzuya/beater-cli",
"keywords": [
"beater",
"bouzuya",
"eater",
"runner",
"test"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bouzuya/beater-cli.git"
},
"scripts": {
"babel": "babel .tmp/es2015/ -d .tmp/es5/",
"build": "tsc && npm run babel && npm run copy",
"clean": "rm -rf .tmp/ lib/",
"copy": "cpx '.tmp/es5/src/**/*.js' lib/ && cpx '.tmp/es2015/src/**/*.d.ts' lib/",
"prepublish": "typings install && npm run clean && npm run build",
"test": "./bin/beater.sh",
"watch": "parallelshell 'tsc --watch' 'npm run watch-babel' 'npm run watch-copy' 'npm run watch-test'",
"watch-babel": "npm run babel -- --watch",
"watch-copy": "watch --wait 2 'npm run copy' '.tmp/es5/src/'",
"watch-test": "watch --wait 2 'npm test' '.tmp/es5/test/'"
},
"typings": "lib/index.d.ts"
}