-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "buba",
"description": "Buble + little bit of babel for your esnext tests",
"version": "4.0.2",
"author": "David Chase <[email protected]>",
"bin": {
"buba": "cli.js"
},
"bugs": {
"url": "https://github.com/davidchase/buba/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"babel-core": "6.21.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
"buble": "0.15.2",
"commander": "2.9.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"codacy-coverage": "2.0.0",
"cz-conventional-changelog": "1.2.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"standard": "8.6.0",
"tap-spec": "4.1.1",
"tape": "4.6.3"
},
"homepage": "https://github.com/davidchase/buba#readme",
"keywords": [
"babel",
"buble",
"es6",
"esnext",
"harmony",
"testings",
"tests"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/davidchase/buba.git"
},
"scripts": {
"test": "standard && istanbul cover -- tape --require ./register test/index.js | tap-spec && npm run test-options && npm run test-mocha",
"test-mocha": "_mocha test/mocha.js",
"test-options": "tape test/options.js | tap-spec"
}
}