-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.36 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
{
"name": "jsii-sampiler",
"version": "0.19.0",
"description": "Translate TypeScript code snippets to other languages",
"main": "lib/index.js",
"bin": {
"jsii-sampiler": "bin/jsii-sampiler"
},
"scripts": {
"build": "tsc --build",
"watch": "tsc --build -w",
"test": "jest",
"package": "package-js"
},
"devDependencies": {
"@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",
"jest": "^24.9.0",
"jsii-build-tools": "^0.19.0",
"memory-streams": "^0.1.3",
"typescript": "^3.6.4"
},
"dependencies": {
"commonmark": "^0.29.0",
"fs-extra": "^8.1.0",
"typescript": "~3.6.4",
"yargs": "^14.2.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"collectCoverageFrom": [
"lib/**/*.js"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 70,
"statements": 75
}
}
},
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"homepage": "https://github.com/aws/jsii",
"repository": {
"type": "git",
"url": "https://github.com/aws/jsii.git",
"directory": "packages/jsii-sampiler"
},
"engines": {
"node": ">= 10.3.0"
}
}