-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.93 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "jsii-runtime",
"version": "0.20.1",
"description": "jsii runtime kernel process",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"homepage": "https://github.com/aws/jsii",
"bugs": {
"url": "https://github.com/aws/jsii/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/jsii.git",
"directory": "packages/jsii-runtime"
},
"engines": {
"node": ">= 10.3.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"jsii-runtime": "bin/jsii-runtime"
},
"scripts": {
"build": "tsc --build && chmod +x bin/jsii-runtime && /bin/bash ./bundle.sh && npm run lint",
"watch": "tsc --build -w",
"lint": "eslint . --ext .js,.ts --ignore-path=.gitignore",
"test": "jest",
"test:update": "jest -u",
"package": "package-js"
},
"dependencies": {
"jsii-kernel": "^0.20.1",
"jsii-spec": "^0.20.1"
},
"devDependencies": {
"@scope/jsii-calc-base": "^0.20.1",
"@scope/jsii-calc-lib": "^0.20.1",
"@types/jest": "^24.0.22",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"jsii-build-tools": "^0.20.1",
"jsii-calc": "^0.20.1",
"source-map": "^0.7.3",
"source-map-loader": "^0.2.4",
"typescript": "~3.6.4",
"wasm-loader": "^1.3.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/bin/**/*.js",
"**/lib/**/*.js"
],
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 45,
"statements": 57
}
},
"errorOnDeprecated": true,
"setupFilesAfterEnv": [
"jest-expect-message"
],
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).js"
]
}
}