-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 894 Bytes
/
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
{
"name": "dir-babel",
"version": "1.0.14",
"description": "Little script on top of babel to compare src and lib before running babel on needed files",
"main": "lib/dir-babel.js",
"bin": {
"dir-babel": "./lib/dir-babel.js"
},
"scripts": {
"build": "babel src --out-dir lib",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ValeryG/dir-babel.git"
},
"author": "Val Gorodnichev",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"mock-fs": "^4.0.0"
},
"dependencies": {
"babel-core": "^6.24.1",
"batch-promises": "0.0.3",
"glob": "^7.1.1",
"mkdirp": "^0.5.1",
"yargs": ">=7.0.1"
},
"keywords": [
"babel",
"babel-cli",
"build"
]
}