forked from decaffeinate/decaffeinate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.14 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.14 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "decaffeinate",
"version": "0.0.0-development",
"description": "Move your CoffeeScript source to modern JavaScript.",
"keywords": [
"coffee",
"coffee-script",
"convert",
"es3",
"es6",
"esnext"
],
"repository": {
"type": "git",
"url": "https://github.com/decaffeinate/decaffeinate.git"
},
"license": "MIT",
"author": "Brian Donovan",
"contributors": [
"Alan Pierce <alangpierce@gmail.com>"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"decaffeinate": "./bin/decaffeinate"
},
"files": [
"bin",
"dist"
],
"scripts": {
"prebuild": "rimraf dist && mkdirp dist && yarn lint",
"build": "script/build",
"lint": "eslint --ext .ts src script test",
"lint:fix": "yarn lint --fix",
"prepublish": "yarn build",
"pretest": "yarn build",
"test": "jest",
"update-website": "ts-node ./script/update-website.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,md,json}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"resolutions": {
"**/@babel/types": "7.12.6",
"**/@resugar/helper-comments": "^1.0.2"
},
"dependencies": {
"@codemod/core": "^1.1.0",
"@codemod/parser": "^1.1.0",
"@resugar/codemod-declarations-block-scope": "^1.0.2",
"@resugar/codemod-functions-arrow": "^1.0.2",
"@resugar/codemod-modules-commonjs": "^1.0.4",
"@resugar/codemod-objects-concise": "^1.0.2",
"@resugar/codemod-objects-destructuring": "^1.0.1",
"@resugar/codemod-objects-shorthand": "^1.0.1",
"@resugar/codemod-strings-template": "^1.0.1",
"add-variable-declarations": "^4.0.7",
"automatic-semicolon-insertion": "^2.0.5",
"coffee-lex": "^9.1.5",
"decaffeinate-coffeescript": "1.12.7-patch.3",
"decaffeinate-coffeescript2": "2.2.1-patch.5",
"decaffeinate-parser": "^22.5.15",
"detect-indent": "^4.0.0",
"lines-and-columns": "^1.1.6",
"magic-string": "^0.25.7",
"mz": "^2.7.0",
"tslib": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/traverse": "^7.12.5",
"@babel/types": "^7.12.6",
"@types/babel__core": "^7.1.12",
"@types/babel__generator": "^7.6.2",
"@types/babel__template": "^7.0.3",
"@types/babel__traverse": "^7.0.15",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.4",
"@types/mz": "^2.7.0",
"@types/node": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"husky": "^6.0.0",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sort-package-json": "^1.44.0",
"ts-jest": "^26.1.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}