-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 851 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 851 Bytes
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
{
"name": "fly-prettier",
"version": "1.0.0",
"description": "Prettier plugin for Fly",
"repository": "https://github.com/lukeed/fly-prettier",
"main": "index.js",
"license": "MIT",
"files": [
"index.js"
],
"keywords": [
"fly",
"fly-plugin",
"prettier",
"eslint"
],
"scripts": {
"test": "xo && tape test/*.js | tap-spec"
},
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"dependencies": {
"prettier": "^1.1.0"
},
"devDependencies": {
"fly": "^2.0.5",
"fly-clear": "^1.0.1",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"xo": "*"
},
"engines": {
"node": ">= 4.6"
},
"xo": {
"rules": {
"generator-star-spacing": 0,
"capitalized-comments": 0,
"require-yield": 0
}
}
}