-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.85 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.85 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
{
"name": "jsii-diff",
"version": "0.19.0",
"description": "Assembly comparison for jsii",
"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-diff"
},
"engines": {
"node": ">= 10.3.0"
},
"main": "lib/index.js",
"bin": {
"jsii-diff": "bin/jsii-diff"
},
"scripts": {
"build": "bash ./generate.sh && tsc --build && npm run lint",
"watch": "bash ./generate.sh && tsc --build -w",
"lint": "eslint . --ext .js,.ts --ignore-path=.gitignore",
"test": "jest",
"package": "package-js"
},
"dependencies": {
"jsii-reflect": "^0.19.0",
"jsii-spec": "^0.19.0",
"log4js": "^5.2.2",
"typescript": "~3.6.4",
"yargs": "^14.2.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.19",
"@types/jest-expect-message": "^1.0.0",
"@types/tar-fs": "^1.16.1",
"@types/yargs": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"jest-expect-message": "^1.0.2",
"jsii": "^0.19.0",
"jsii-build-tools": "^0.19.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/bin/**/*.js",
"**/lib/**/*.js"
],
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 60,
"statements": 60
}
},
"errorOnDeprecated": true,
"setupFilesAfterEnv": [
"jest-expect-message"
],
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).js"
]
}
}