-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "standard-format",
"version": "2.2.4",
"description": "attempts to reformat javascript to comply with feross/standard style",
"main": "index.js",
"bin": "./bin.js",
"scripts": {
"test": "standard && tape test/*.js | tap-spec",
"test-file": "<test/test-files/test.js ./bin.js | standard",
"failing": "standard && tape test/failing/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/maxogden/standard-format.git"
},
"author": "max ogden",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/maxogden/standard-format/issues"
},
"homepage": "https://github.com/maxogden/standard-format",
"dependencies": {
"deglob": "^1.0.0",
"esformatter": "^0.9.0",
"esformatter-eol-last": "^1.0.0",
"esformatter-jsx": "^7.0.0",
"esformatter-literal-notation": "^1.0.0",
"esformatter-quotes": "^1.0.0",
"esformatter-remove-trailing-commas": "^1.0.1",
"esformatter-semicolon-first": "^1.1.0",
"esformatter-spaced-lined-comment": "^2.0.0",
"minimist": "^1.1.0",
"stdin": "0.0.1"
},
"devDependencies": {
"concat-stream": "^1.4.7",
"debug": "^2.1.1",
"once": "^1.3.1",
"skip-stream": "0.0.3",
"split": "^1.0.0",
"standard": "*",
"stream-reduce": "^1.0.3",
"tap-spec": "^4.1.0",
"tape": "^4.2.0"
},
"standard": {
"ignore": [
"*test/test-files/**",
"*test/failing/**"
]
}
}