-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "@ovotech/avro-mock-generator",
"version": "0.0.0",
"description": "Generate mock messages from an avro schema",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p .",
"test": "jest --verbose",
"validate": "npm run test && npm run lint",
"prepush": "npm run validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ovotech/avro-mock-generator.git"
},
"keywords": [
"avro",
"avsc",
"mock",
"generate",
"data"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ovotech/avro-mock-generator/issues"
},
"homepage": "https://github.com/ovotech/avro-mock-generator#readme",
"devDependencies": {
"@types/jest": "^24.0.16",
"@types/mersenne-twister": "^1.1.2",
"@types/node": "^12.6.8",
"@types/uuid": "^8.3.3",
"avsc": "^5.4.19",
"husky": "^3.0.2",
"isuuid": "^0.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3"
},
"dependencies": {
"mersenne-twister": "^1.1.0",
"uuid": "^9.0.0"
}
}