forked from aws/jsii
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "lerna run build --stream --sort --concurrency=1",
"bump": "bash scripts/bump.sh",
"fetch-dotnet-snk": "bash scripts/fetch-dotnet-snk.sh",
"package": "bash scripts/package.sh",
"test": "lerna run test --stream",
"test:integ": "lerna run test:integ --stream",
"test:update": "lerna run test:update --stream"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-import-resolver-node": "^0.3.3",
"eslint-import-resolver-typescript": "^2.0.0",
"lerna": "^3.20.2"
},
"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/**"
]
}
}