forked from decaffeinate/bulk-decaffeinate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "bulk-decaffeinate",
"version": "3.3.2",
"description": "Run decaffeinate and related operations on a whole codebase, or just part of one.",
"main": "dist/bulk-decaffeinate.js",
"jsnext:main": "dist/bulk-decaffeinate.mjs",
"preferGlobal": true,
"bin": {
"bulk-decaffeinate": "./bin/bulk-decaffeinate"
},
"scripts": {
"prebuild": "npm run lint",
"build": "rollup -c && babel jscodeshift-scripts --out-dir jscodeshift-scripts-dist",
"lint": "eslint src test jscodeshift-scripts",
"pretest": "npm run build",
"test": "mocha test test/util",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/decaffeinate/bulk-decaffeinate.git"
},
"keywords": [
"coffeescript",
"es6",
"decaffeinate"
],
"author": "Alan Pierce",
"license": "MIT",
"files": [
"bin",
"dist",
"jscodeshift-scripts-dist"
],
"bugs": {
"url": "https://github.com/decaffeinate/bulk-decaffeinate/issues"
},
"homepage": "https://github.com/decaffeinate/bulk-decaffeinate#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^8.1.2",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.11.4",
"babel-preset-es2015": "^6.13.0",
"babel-register": "^6.11.6",
"babelrc-rollup": "^3.0.0",
"decaffeinate": "^3.0.0",
"eslint": "^5.16.0",
"eslint-plugin-babel": "^5.3.0",
"jscodeshift": "^0.6.4",
"mocha": "^3.0.2",
"rollup": "^0.36.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-json": "^4.0.0",
"semantic-release": "^6.3.2"
},
"dependencies": {
"babel-polyfill": "^6.13.0",
"commander": "^2.9.0",
"executable": "^4.1.0",
"fs-promise": "^2.0.3",
"moment": "^2.19.1",
"mz": "^2.4.0",
"opn": "^4.0.2",
"require-uncached": "^2.0.0",
"simple-git": "^1.70.0"
}
}