forked from decaffeinate/decaffeinate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.49 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "decaffeinate",
"description": "Move your CoffeeScript source to modern JavaScript.",
"version": "0.0.0-development",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"decaffeinate": "./bin/decaffeinate"
},
"scripts": {
"lint": "eslint --ext .ts src script test && tslint --config tslint.json --project tsconfig.json",
"lint-fix": "eslint --fix --ext .ts src script test && tslint --config tslint.json --project tsconfig.json --fix",
"pretest": "yarn run build",
"test": "mocha 'test/**/*.ts'",
"prebuild": "rimraf dist && mkdirp dist && npm run lint",
"build": "script/build",
"prepublish": "yarn run build",
"update-website": "ts-node ./script/update-website.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/decaffeinate/decaffeinate.git"
},
"keywords": [
"coffee",
"coffee-script",
"convert",
"es3",
"es6",
"esnext"
],
"author": "Brian Donovan",
"contributors": [
"Alan Pierce <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.1.6",
"add-variable-declarations": "^4.0.2",
"automatic-semicolon-insertion": "^2.0.2",
"coffee-lex": "^9.1.3",
"decaffeinate-coffeescript": "1.12.7-patch.3",
"decaffeinate-coffeescript2": "2.2.1-patch.5",
"decaffeinate-parser": "^22.5.11",
"detect-indent": "^4.0.0",
"esnext": "^3.3.1",
"lines-and-columns": "^1.1.6",
"magic-string": "^0.25.1",
"mz": "^2.7.0",
"tslib": "^1.9.3"
},
"engines": {
"node": ">=6"
},
"files": [
"bin",
"dist"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/types": "^7.3.2",
"@types/babel__core": "^7.0.4",
"@types/babel__generator": "^7.0.1",
"@types/babel__template": "^7.0.1",
"@types/babel__traverse": "^7.0.5",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.5",
"@types/mz": "^0.0.32",
"@types/node": "^11.9.0",
"eslint": "^5.13.0",
"eslint-plugin-prettier": "^3.0.1",
"fs-extra": "^7.0.1",
"mkdirp": "^0.5.1",
"mocha": "^6.1.1",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"typescript-eslint-parser": "^22.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"greenkeeper": {
"ignore": [
"repeating",
"magic-string",
"detect-indent"
]
}
}