-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.23 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.23 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
82
83
84
85
86
87
{
"name": "jsii-pacmak",
"version": "0.19.0",
"description": "A code generation framework for jsii backend languages",
"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-pacmak"
},
"engines": {
"node": ">= 10.3.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"jsii-pacmak": "bin/jsii-pacmak"
},
"scripts": {
"gen": "/bin/bash generate.sh",
"build": "npm run gen && tsc --build && chmod +x bin/jsii-pacmak && npm run lint",
"watch": "tsc --build -w",
"lint": "eslint . --ext .js,.ts --ignore-path=.gitignore",
"test": "/bin/bash test/diff-test.sh && /bin/bash test/build-test.sh && jest",
"package": "package-js"
},
"dependencies": {
"clone": "^2.1.2",
"codemaker": "^0.19.0",
"commonmark": "^0.29.0",
"escape-string-regexp": "^2.0.0",
"fs-extra": "^8.1.0",
"jsii-reflect": "^0.19.0",
"jsii-sampiler": "^0.19.0",
"jsii-spec": "^0.19.0",
"spdx-license-list": "^6.1.0",
"xmlbuilder": "^13.0.2",
"yargs": "^14.2.0"
},
"devDependencies": {
"@scope/jsii-calc-lib": "^0.19.0",
"@types/clone": "^0.1.30",
"@types/commonmark": "^0.27.4",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.19",
"@types/node": "^8.10.55",
"@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-build-tools": "^0.19.0",
"jsii-calc": "^0.19.0",
"jsii-dotnet-jsonmodel": "^0.19.0",
"jsii-dotnet-runtime": "^0.19.0",
"jsii-java-runtime": "^0.19.0",
"typescript": "~3.6.4"
},
"keywords": [
"jsii",
"aws"
],
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/bin/**/*.js",
"**/lib/**/*.js"
],
"coverageReporters": [
"lcov",
"text"
],
"errorOnDeprecated": true,
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).js"
]
}
}