-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "@smpx/babel-changed",
"version": "0.6.1",
"description": "Only compile changed files with babel",
"main": "index.js",
"scripts": {
"test": "rm -rf ___dist && node ./bin/babel-changed.js --src . --dest ___dist && rm -rf ___dist",
"prepublishOnly": "npm run test"
},
"bin": {
"babel-changed": "bin/babel-changed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprix/babel-changed.git"
},
"keywords": [
"babel",
"changed",
"modified",
"es6",
"es5",
"transpile",
"development",
"node",
"js",
"compile"
],
"author": "Rohit Gohri",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprix/babel-changed/issues"
},
"homepage": "https://github.com/smartprix/babel-changed#readme",
"dependencies": {
"commander": "^6.2.1",
"fast-glob": "^3.2.4",
"p-map": "^4.0.0"
},
"peerDependencies": {
"@babel/core": "^7.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.10"
}
}