-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.81 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.81 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
{
"name": "jsii-reflect",
"version": "0.19.0",
"description": "strongly-typed reflection library and tools 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-reflect"
},
"engines": {
"node": ">= 10.3.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"jsii-tree": "bin/jsii-tree"
},
"scripts": {
"build": "tsc --build && chmod +x bin/jsii-tree && npm run lint",
"watch": "tsc --build -w",
"lint": "eslint . --ext .js,.ts --ignore-path=.gitignore",
"test": "jest",
"package": "package-js"
},
"dependencies": {
"colors": "^1.4.0",
"fs-extra": "^8.1.0",
"jsii-spec": "^0.19.0",
"oo-ascii-tree": "^0.19.0",
"yargs": "^14.2.0"
},
"devDependencies": {
"@scope/jsii-calc-lib": "^0.19.0",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.19",
"@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",
"jsii": "^0.19.0",
"jsii-build-tools": "^0.19.0",
"jsii-calc": "^0.19.0",
"typescript": "~3.6.4"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/bin/**/*.js",
"**/lib/**/*.js"
],
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 30,
"statements": 45
}
},
"errorOnDeprecated": true,
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).js"
]
}
}