-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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-to",
"version": "0.0.37",
"description": "JSON-Schema To ≤GraphQL|Protobuf|Code≥.™",
"main": "index.js",
"bin": {
"json-schema-to": "bin/cli.js"
},
"engines": {
"node": ">= 8"
},
"files": [
"bin/*",
"lib/*",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/json-schema-faker/json-schema-to"
},
"bugs": "https://github.com/json-schema-faker/json-schema-to/issues",
"scripts": {
"watch": "npm test -- -w",
"test": "npm run test:unit --",
"test:ci": "npm run test:unit:coverage && npm run report -- -r ${LCOV_OUTPUT:-lcov}",
"test:unit": "NODE_ENV=test _mocha --exit --colors --watch-ignore 'test/generated/**' -bR spec 'test/*.test.js'",
"test:unit:coverage": "NODE_ENV=test nyc -x '**/test/**' -x '**/*.test.js' -- npm run test:unit",
"codecov": "codecov --file=coverage/lcov.info -e TRAVIS_NODE_VERSION",
"report": "nyc report"
},
"keywords": [
"json",
"json-schema",
"protobuf",
"graphql",
"schemas",
"models",
"types"
],
"author": "Alvaro Cabrera <[email protected]>",
"license": "MIT",
"dependencies": {
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"is-my-json-valid": "^2.20.0",
"js-yaml": "^4.1.0",
"wargs": "^0.10.0"
},
"devDependencies": {
"@graphql-tools/git-loader": "6.2.6",
"@graphql-tools/schema": "^8.3.13",
"@grpc/grpc-js": "^1.6.7",
"@grpc/proto-loader": "^0.6.4",
"chai": "^4.1.2",
"codecov": "^3.8.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.13.0",
"graphql": "^15.3.0",
"mocha": "^7.2.0",
"mock-fs": "^4.14.0",
"nyc": "^15.0.0"
}
}