-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "validated",
"version": "2.0.1",
"description": "JSON configuration utilities",
"bin": {
"validated": "./lib/bin/validated.js"
},
"scripts": {
"test": "make build lint check test",
"precommit": "npm run test",
"prepublishOnly": "npm run test"
},
"files": [
"lib/",
"json5.js",
"object.js",
"schema.js",
"repr.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andreypopp/validated.git"
},
"author": "Andrey Popp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreypopp/validated/issues"
},
"homepage": "https://github.com/andreypopp/validated#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"doctoc": "^1.3.1",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.85.0",
"husky": "^1.1.2",
"mocha": "^5.2.0",
"mocha-doctest": "^0.3.4",
"prettier": "^1.14.3"
},
"dependencies": {
"commander": "^2.19.0",
"custom-error-instance": "^2.1.1",
"indent-string": "^3.2.0",
"invariant": "^2.2.4",
"levenshtein-edit-distance": "^2.0.2"
},
"publishConfig": {
"access": "public"
}
}