-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.68 KB
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": "microgamma",
"private": true,
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"scripts": {
"info": "npm-scripts-info",
"prebuild": "run-s clean",
"build": "tsc -b packages/*",
"clean": "trash packages/*/lib",
"pretest": "run-s build",
"test": "run-s test:*",
"test:lint": "lerna run test:lint",
"test:unit": "lerna run test:unit --parallel",
"prerelease": "run-s build",
"release": "lerna version",
"publish:all": "lerna exec npm publish"
},
"engines": {
"node": ">=8.9"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"@types/sinon": "^5.0.1",
"ava": "^1.0.0-beta.5.1",
"ava-ts": "^0.25.2",
"codecov": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"debug": "^3.1.0",
"gh-pages": "^1.2.0",
"jest": "^23.6.0",
"lerna": "^3.10.5",
"npm-run-all": "^4.1.3",
"npm-scripts-info": "^0.3.6",
"nsp": "^3.2.1",
"nyc": "^12.0.2",
"opn-cli": "^3.1.0",
"serverless": "^1.30.1",
"sinon": "^7.2.2",
"standard-version": "^4.4.0",
"trash-cli": "^1.4.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.17.0",
"tslint-immutable": "^4.5.4",
"typedoc": "^0.11.1",
"typescript": "^3.2.2",
"yarn": "^1.12.3"
},
"dependencies": {
"@microgamma/apigator": "file:packages/apigator",
"@microgamma/datagator": "file:packages/datagator",
"@microgamma/digator": "file:packages/digator",
"@microgamma/loggator": "file:packages/loggator",
"@microgamma/serverless-apigator": "file:packages/serverless-apigator",
"jest-stare": "^1.11.1"
}
}