-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.77 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
{
"private": true,
"license": "Apache-2.0",
"version": "0.0.0",
"scripts": {
"build": "lerna run build --stream --sort --concurrency=1",
"lint": "lerna run lint --stream --sort",
"lint:fix": "lerna run lint:fix --stream --sort",
"bump": "bash scripts/bump.sh",
"dist-clean": "lerna run dist-clean --stream && rm -rf dist",
"package": "bash scripts/package.sh",
"test": "lerna run test --concurrency=1 --stream && yarn compliance",
"test:integ": "lerna run test:integ --stream",
"test:update": "lerna run test:update --concurrency=1 --stream",
"compliance": "(cd tools/jsii-compliance && yarn report)"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/jest": "^29.5.0",
"@types/node": "^14.18.40",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"all-contributors-cli": "^6.24.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-circus": "^28.1.3",
"jest-config": "^28.1.3",
"jest-expect-message": "^1.1.3",
"lerna": "^6.5.1",
"prettier": "^2.8.6",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "~4.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/jsii.git"
},
"workspaces": {
"packages": [
"packages/*",
"packages/@jsii/*",
"packages/@scope/*",
"tools/*"
],
"nohoist": [
"**/@fixtures/jsii-calc-bundled",
"**/@fixtures/jsii-calc-bundled/**",
"**/typescript"
]
},
"resolutions": {
"@types/yargs": "17.0.19"
}
}