forked from ovotech/castle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "@ovotech/avro-timestamp-millis",
"description": "A logical type representing Date as long number",
"version": "0.1.5",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"author": "Ivan Kerin <[email protected]>",
"license": "Apache-2.0",
"repository": "[email protected]:ovotech/castle.git",
"homepage": "https://github.com/ovotech/castle/tree/main/packages/avro-timestamp-millis#readme",
"scripts": {
"test": "jest --runInBand",
"lint:prettier": "prettier --list-different {src,test}/**/*.ts",
"lint:eslint": "eslint '{src,test}/**/*.ts'",
"lint": "yarn lint:prettier && yarn lint:eslint",
"build": "tsc --outDir dist --declaration",
"build:docs": "build-docs README.md"
},
"devDependencies": {
"avsc": "^5.5.6",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"peerDependencies": {
"avsc": "^5.5.6"
},
"jest": {
"preset": "../../jest.json"
}
}