-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.08 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
{
"name": "meteor-decaffeinate",
"version": "0.1.4",
"description": "Quickly and easily decaffeinate, lint and fix (xo) coffeescript files in a meteor project.",
"license": "MIT",
"repository": "maxfi/meteor-decaffeinate",
"author": {
"name": "Max",
"email": "[email protected]",
"url": "github.com/maxfi"
},
"bin": "cli.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && nyc ava",
"release": "np"
},
"files": [
"index.js",
"cli.js",
"meteor-imports.js"
],
"keywords": [
"cli-app",
"cli",
"meteor",
"decaffeinate",
"coffee",
"coffeescript",
"coffee-script",
"convert",
"es6",
"esnext"
],
"xo": {
"semicolon": false,
"ignores": [
"test/fixtures/**.*"
]
},
"dependencies": {
"dashify": "^1.0.0",
"decaffeinate": "^4.8.8",
"del": "^3.0.0",
"execa": "^1.0.0",
"is-file": "^1.0.0",
"lodash": "^4.17.10",
"meow": "^5.0.0",
"open-editor": "^1.2.0",
"prepend-file": "^1.3.1",
"read-pkg-up": "^4.0.0",
"xo": "^0.22.0"
},
"devDependencies": {
"ava": "*",
"cp-file": "^6.0.0",
"np": "*",
"nyc": "^13.0.1"
}
}