-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 802 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 802 Bytes
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
{
"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:update": "UPDATE_DIFF=1 lerna run test --stream"
},
"devDependencies": {
"@types/node": "^10.17.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"lerna": "^3.18.3",
"typescript": "~3.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/jsii.git"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/jsii-calc-bundled"
]
}
}