-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.7 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
61
62
63
64
{
"name": "json-schema-server",
"version": "0.4.4",
"description": "CLI server utility for JSON-Schema-faker",
"main": "lib/cli.js",
"bin": {
"json-schema-server": "bin/json-schema-server"
},
"contributors": [
{
"name": "Alvaro Cabrera",
"email": "[email protected]"
},
{
"name": "Tomasz Ducin",
"email": "[email protected]",
"url": "http://ducin.it"
}
],
"scripts": {
"test": "npm run test:unit --",
"test:ci": "npm run coverage:unit && npm run report -- -r lcov",
"test:run": "NODE_ENV=test _mocha --exit --recursive --watch-extensions js,json,schema -bR spec",
"test:unit": "npm run test:run tests",
"test:server": "bin/json-schema-server tests/fixtures --fakeroot",
"coverage": "nyc -x '**/tests/**' -x '**/*.test.js'",
"coverage:unit": "npm run coverage -- npm run test:unit",
"codecov": "codecov --file=coverage/lcov.info -e TRAVIS_NODE_VERSION",
"report": "nyc report",
"lint": "eslint lib tests",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/json-schema-faker/json-schema-server"
},
"license": "MIT",
"keywords": [
"json",
"jsonschema",
"fake",
"mocks",
"server"
],
"devDependencies": {
"chai": "^4.2.0",
"codecov": ">=3.7.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0"
},
"dependencies": {
"@grown/logger": "0.0.12",
"chance": "^1.0.16",
"cli-color": "^2.0.0",
"faker": "^5.3.1",
"glob": "^7.0.3",
"grown": "^1.1.28",
"json-schema-faker": "^0.5.0-rcv.33",
"wargs": "^0.9.2"
}
}