-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·46 lines (46 loc) · 1.11 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
{
"name": "fake-schema-cli",
"version": "0.1.2",
"description": "JSON-Schema-Faker CLI",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text node_modules/.bin/mocha **/*.spec.js",
"lint": "node_modules/.bin/eslint .",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "[email protected]:atomsfat/fake-schema-cli.git"
},
"keywords": [
"json",
"jsonschema",
"fake",
"mocks",
"cli"
],
"bin": {
"fake-schema": "./lib/index.js"
},
"author": "Tomás Salazar",
"license": "MIT",
"dependencies": {
"commander": "^6.2.0",
"faker": "^4.1.0",
"get-stdin": "^7.0.0",
"json-schema-faker": "0.5.0-rcv.30",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0"
}
}