-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1023 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
40
41
42
43
44
45
46
{
"name": "billy",
"version": "2.0.3",
"description": "A minimal application harness that stays out of your way and out of your code.",
"author": "Brandon Valosek <[email protected]>",
"repository": "[email protected]:bvalosek/billy.git",
"license": "MIT",
"scripts": {
"test": "tape test/*.js",
"build-es5": "BABEL_ENV=es5 babel -d ./es5 ./lib",
"build-node6": "BABEL_ENV=node6 babel -d ./node6 ./lib",
"prepublish": "npm run build-es5 && npm run build-node6"
},
"babel": {
"env": {
"es5": {
"presets": [
"env"
]
},
"node6": {
"presets": [
[
"env",
{
"targets": {
"node": [
6
]
}
}
]
]
}
}
},
"dependencies": {
"@babel/parser": "^7.1.3",
"debug": "^4.1.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-env": "1.4.0",
"tape": "4.6.3"
}
}