forked from bugsnag/depercolator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "depercolator",
"version": "0.5.0",
"description": "Converts coffeescript to idiomatic javascript (supports JSX)",
"homepage": "https://github.com/bugsnag/depercolator",
"scripts": {
"test": "jest",
"pretest": "yarn run build",
"prepublish": "yarn run build",
"build": "babel src -d dist"
},
"engines": {
"node": ">=4.3.2"
},
"repository": {
"type": "git",
"url": "git://github.com/bugsnag/depercolator.git"
},
"license": "MIT",
"bin": {
"depercolate": "dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"babel-core": "^6.24.1",
"babel-plugin-transform-react-createelement-to-jsx": "^1.0.1",
"chalk": "^2.3.0",
"coffee-react-transform": "^5.0.0",
"commander": "^2.9.0",
"decaffeinate": "^3.3.13",
"lodash": "^4.17.4",
"prettier-eslint": "^8.2.2"
},
"devDependencies": {
"async-child-process": "^1.1.1",
"async-file": "^2.0.2",
"babel-cli": "^6.24.1",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.4.0",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^21.2.1",
"resolve-bin": "^0.4.0"
}
}