This repository has been archived by the owner on Jun 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.41 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
79
80
81
82
83
{
"name": "babel-multi-env",
"version": "0.6.1",
"description":
"`babel` CLI replacement with multiple node version support by `babel-preset-env` and `babel-plugin-transform-runtime`. Useful for node.js libraries/modules",
"license": "MIT",
"author": {
"name": "tomchentw",
"email": "developer@tomchentw.com",
"url": "https://github.com/tomchentw"
},
"repository": {
"type": "git",
"url": "https://github.com/tomchentw/babel-multi-env"
},
"bugs": {
"url": "https://github.com/tomchentw/babel-multi-env/issues"
},
"homepage": "https://github.com/tomchentw/babel-multi-env",
"bin": {
"babel-multi-env": "./bin/babel-multi-env.js"
},
"files": ["bin/", "lib/", "src/", "CHANGELOG.md"],
"keywords": ["babel"],
"scripts": {
"precommit": "lint-staged",
"start": "babel-node --presets babel-preset-env src/runCLI.js",
"test": "jest",
"posttest": "rimraf tmp",
"prebuild:lib": "rimraf lib",
"build:lib":
"npm start -- --multi-versions 8.0.0 6.0.0 4.0.0 0.12.0 0.10.0 --given 'src/*.js' --out-dir lib ",
"precommit:lib": "npm run build:lib",
"commit:lib":
"git add -A && git commit -m 'chore(lib): compile from src with `babel-multi-env`'",
"prerelease": "npm run commit:lib",
"release": "standard-version"
},
"lint-staged": {
"*.{js,jsx,json,css}": ["prettier --write", "git add"]
},
"babel": {
"plugins": ["transform-runtime"],
"env": {
"test": {
"presets": [["env"]]
}
}
},
"dependencies": {
"ast-types": "^0.9.14",
"chalk": "^2.2.0",
"glob": "^7.1.2",
"glob-parent": "^3.1.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"path-complete-extname": "^1.0.0",
"util.promisify": "^1.0.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"babel-core": "^7.0.0-beta.3",
"babel-jest": "^21.2.0",
"babel-node": "^7.0.0-beta.3",
"babel-plugin-transform-runtime": "^7.0.0-beta.3",
"babel-preset-env": "^7.0.0-beta.3",
"babel-runtime": "^7.0.0-beta.3",
"husky": "^0.14.3",
"jest": "^21.3.0-beta.2",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"semver": "^5.4.1",
"standard-version": "^4.2.0"
},
"peerDependencies": {
"babel-core": "^7.0.0-beta.3",
"babel-plugin-transform-runtime": "^7.0.0-beta.3",
"babel-preset-env": "^7.0.0-beta.3",
"babel-runtime": "^7.0.0-beta.3",
"semver": "^5.4.1"
}
}