-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "@researchgate/mongoose-avro-schema-generator",
"version": "1.1.6",
"description": "Generates Apache Avro schemas from mongoose schemas.",
"repository": {
"type": "git",
"url": "https://github.com/researchgate/mongoose-avro-schema-generator"
},
"main": "src/index.js",
"scripts": {
"create-github-release": "conventional-github-releaser -p angular",
"format": "eslint --fix src/",
"lint": "run-s lint:*",
"lint:json": "jsonlint-cli {**/*.json,.*rc}",
"lint:js": "eslint src/",
"precommit": "echo $PATH && yarn lint-staged && yarn test",
"prepublishOnly": "run-s test",
"release": "standard-version",
"test": "./node_modules/nyc/bin/nyc.js --reporter=html --reporter=text ./node_modules/mocha/bin/_mocha test",
"coverage": "./node_modules/nyc/bin/nyc.js --reporter=html --reporter=lcovonly ./node_modules/mocha/bin/_mocha test && cat ./coverage/lcov.info && codecov"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,*rc}": [
"jsonlint-cli"
]
},
"keywords": [
"avro",
"mongoose",
"schema",
"nodejs"
],
"author": "Tobias Hornberger",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2.6",
"codecov": "^3.0.4",
"conventional-github-releaser": "^3.0.0",
"eslint": "^5.4.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^0.14.3",
"jsonlint-cli": "^1.0.1",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.3",
"nyc": "^12.0.1",
"prettier": "^1.14.2",
"standard-version": "^4.4.0"
},
"dependencies": {
"mongoose": "^5.2.9"
},
"engines": {
"node": ">=8.0.0",
"yarn": ">= 1.0.0"
}
}