forked from decaffeinate/decaffeinate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "decaffeinate",
"version": "2.11.2",
"description": "Move your CoffeeScript source to modern JavaScript.",
"main": "dist/decaffeinate.cjs.js",
"jsnext:main": "dist/decaffeinate.es6.js",
"bin": {
"decaffeinate": "./bin/decaffeinate"
},
"scripts": {
"lint": "eslint src test",
"pretest": "npm run build",
"test": "mocha",
"prebuild": "npm run lint",
"build": "rollup -c rollup.cjs.config.js && rollup -c rollup.es6.config.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/decaffeinate/decaffeinate.git"
},
"keywords": [
"coffee",
"coffee-script",
"convert",
"es3",
"es6",
"esnext"
],
"author": "Brian Donovan",
"license": "MIT",
"dependencies": {
"add-variable-declarations": "^1.5.0",
"ast-processor-babylon-config": "^1.0.0",
"automatic-semicolon-insertion": "^1.0.1",
"babylon": "^6.7.0",
"coffee-lex": "^1.4.1",
"decaffeinate-parser": "^1.2.22",
"detect-indent": "^4.0.0",
"esnext": "^2.0.0",
"magic-string": "^0.15.0",
"repeating": "^2.0.0"
},
"files": [
"bin",
"dist"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-eslint": "^6.0.4",
"babel-plugin-syntax-class-properties": "^6.5.0",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-register": "^6.7.2",
"browserify": "^13.0.0",
"eslint": "^2.10.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-decaffeinate": "file:eslint-rules",
"mocha": "^2.4.5",
"mversion": "^1.10.1",
"rollup": "^0.26.1",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-json": "^2.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}