forked from decaffeinate/decaffeinate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.34 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
{
"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": "tslint --config tslint.json --project tsconfig.json --type-check",
"lint-fix": "tslint --config tslint.json --project tsconfig.json --type-check --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": {
"add-variable-declarations": "^3.1.0",
"ast-processor-babylon-config": "^1.0.0",
"automatic-semicolon-insertion": "^1.0.2",
"babel-plugin-transform-optional-chaining": "^7.0.0-beta.3",
"babel-preset-es2015": "^7.0.0-beta.3",
"babylon": "7.0.0-beta.34",
"coffee-lex": "^9.0.0",
"decaffeinate-coffeescript": "1.12.7-patch.2",
"decaffeinate-coffeescript2": "2.2.1-patch.3",
"decaffeinate-parser": "^22.2.0",
"detect-indent": "^4.0.0",
"esnext": "^3.2.0",
"lines-and-columns": "^1.1.5",
"magic-string": "^0.22.1",
"mz": "^2.7.0",
"tslib": "^1.7.1"
},
"engines": {
"node": ">=6"
},
"files": [
"bin",
"dist"
],
"devDependencies": {
"@types/babel-core": "^6.7.14",
"@types/babylon": "^6.16.1",
"@types/fs-extra": "^5.0.0",
"@types/mocha": "^2.2.43",
"@types/mz": "^0.0.32",
"@types/node": "^9.3.0",
"babel-core": "^7.0.0-beta.3",
"fs-extra": "^5.0.0",
"mkdirp": "^0.5.1",
"mocha": "^5.0.0",
"mversion": "^1.10.1",
"rimraf": "^2.5.4",
"ts-node": "^5.0.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"greenkeeper": {
"ignore": [
"repeating",
"magic-string",
"detect-indent"
]
}
}