generated from NiGhTTraX/ts-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 1.65 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
66
67
68
69
70
71
{
"version": "1.1.1",
"name": "@trellisfw/rules-worker",
"description": "Worker library for exposing services to Trellis Rules Engine",
"keywords": [
"oada",
"trellis",
"microservice"
],
"main": "lib/index.js",
"author": "Alex Layton <[email protected]>",
"homepage": "https://trellisfw.github.io/rules-engine/modules/worker",
"repository": {
"type": "git",
"url": "https://github.com/trellisfw/rules-engine.git",
"directory": "packages/worker"
},
"bugs": {
"url": "https://github.com/trellisfw/rules-engine/labels/rules-worker"
},
"license": "MIT",
"scripts": {
"build": "yarn g:tsc -b",
"pretest": "npm run build",
"test": "ava",
"prepare": "npm run build"
},
"prettier": {
"singleQuote": true,
"quoteProps": "consistent"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "lib/"
}
}
},
"files": [
"**/*.ts",
"**/*.ts.map",
"**/*.js",
"**/*.js.map",
"tsconfig.json"
],
"dependencies": {
"@oada/list-lib": "^2.1.11",
"@oada/types": "1.7.0",
"@rjsf/core": "^3.2.1",
"ajv": "^8.8.2",
"bluebird": "^3.7.2",
"debug": "^4.3.3",
"find-root": "^1.1.0",
"get-caller-file": "^2.0.5",
"glob": "^7.2.0",
"json-pointer": "^0.6.1",
"jsonschema8": "^1.1.1",
"typescript-json-schema": "^0.52.0"
},
"devDependencies": {
"@oada/client": "^2.6.5",
"@types/bluebird": "^3.5.36",
"@types/debug": "^4.1.7",
"@types/find-root": "^1.1.2",
"@types/glob": "^7.2.0",
"@types/json-pointer": "^1.0.31",
"@types/node": "^16.11.11",
"@types/sinon": "^10.0.6",
"ava": "^3.15.0"
}
}