-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 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
65
{
"name": "jsonschema-avro",
"version": "2.1.1",
"description": "Convert JSON-schema into avro schema",
"main": "src/index.js",
"scripts": {
"ci": "npm run lint && npm run coverage",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier -c .",
"lint:eslint": "eslint .",
"test:unit": "mocha src/**/*.test.js",
"test:integration": "mocha test/integration/**",
"test": "npm run test:unit && npm run test:integration",
"format": "prettier --write .",
"coverage": "nyc npm run test",
"coverage:html": "npm run coverage; open coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thedumbterminal/jsonschema-avro.git"
},
"keywords": [
"json-schema",
"jsonschema",
"avro"
],
"author": {
"name": "thedumbterminal",
"email": "[email protected]",
"url": "http://www.thedumbterminal.co.uk"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thedumbterminal/jsonschema-avro/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/thedumbterminal/jsonschema-avro/blob/master/LICENSE"
}
],
"homepage": "https://github.com/thedumbterminal/jsonschema-avro#readme",
"devDependencies": {
"avsc": "^5.7.7",
"eslint": "^8.9.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^3.0.0"
},
"nyc": {
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"reporter": [
"text",
"html"
]
}
}