-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.17 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
{
"name": "@frctl/json-schema",
"description": "Parser to convert condensed JSON schemas to standard ones.",
"version": "0.1.0",
"homepage": "https://github.com/frctl/json-schema",
"repository": "https://github.com/frctl/json-schema",
"bugs": "https://github.com/frctl/json-schema/issues",
"contributors": [
"Danielle Huntrods <[email protected]> (http://clearleft.com)",
"Mark Perkins <[email protected]> (http://allmarkedup.com)"
],
"license": "MIT",
"engines": {
"node": ">= 6.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "xo --fix && xo && nyc npm run test:unit",
"test:unit": "mocha \"test/*.test.js\" --require test/support/env",
"test:watch": "npm run test:unit -- --watch",
"lint": "xo",
"lint:fix": "xo --fix",
"release": "np"
},
"dependencies": {
"@frctl/utils": "^0.4.2",
"lodash": "^4.17.4"
},
"devDependencies": {
"@frctl/eslint-config-frctl": "^0.1.0",
"check-types": "^7.1.5",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"np": "^2.12.0",
"nyc": "^10.1.2",
"xo": "^0.17.1"
},
"xo": {
"extends": "@frctl/eslint-config-frctl"
}
}