-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 869 Bytes
/
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
{
"name": "jsonfix",
"version": "0.1.0",
"description": "jsonfix tool",
"keywords": [
"jsonfix",
"json",
"fix"
],
"author": "paulvollmer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/paulvollmer/jsonfix.git"
},
"bugs": {
"url": "https://github.com/paulvollmer/jsonfix/issues"
},
"homepage": "https://paulvollmer.net/jsonfix/web",
"scripts": {
"lint": "make lint",
"lint-fix": "make lint-fix",
"test": "make test"
},
"bin": {
"jsonfix": "./cmd/jsonfix"
},
"dependencies": {
"jsonlint": "~1.6.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.16.0",
"eslint-config-google": "^0.9.1",
"mocha": "~2.2.4",
"serve": "^6.4.9",
"webpack": "^3.10.0"
}
}