-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "lyra-workflow",
"version": "0.1.2",
"description": "Lyra Workflow Back-end for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"license": "Apache-2.0",
"author": "Puppet Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/lyraproj/ts-workflow.git"
},
"bugs": {
"url": "https://github.com/lyraproj/lyra/issues"
},
"homepage": "https://github.com/lyraproj/ts-workflow#readme",
"keywords": [],
"scripts": {
"test": "jest --verbose --coverage --detectOpenHandles",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile && scripts/copy_generated.sh",
"pretest": "npm run compile && scripts/copy_generated.sh",
"posttest": "npm run check",
"protogen": "scripts/gen_js.sh"
},
"pre-commit": [
"check",
"test"
],
"dependencies": {
"@types/google-protobuf": "^3.2.7",
"@types/node": "^10.14.4",
"@types/sprintf-js": "^1.1.2",
"google-protobuf": "^3.7.1",
"grpc": "^1.19.0",
"grpc-ts-health-check": "^1.0.11",
"net": "^1.0.2",
"protobufjs": "^6.8.8",
"require-from-string": "^2.0.2",
"source-map-resolve": "^0.5.2",
"typescript": "~3.1.0"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"grpc-tools": "^1.7.3",
"grpc_tools_node_protoc_ts": "^2.5.0",
"gts": "^0.9.0",
"jest": "^23.6.0",
"pre-commit": "^1.2.2",
"ts-jest": "^23.10.5"
}
}