-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "@jsii/python-runtime",
"version": "0.0.0",
"private": true,
"description": "Python client for jsii runtime",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/jsii.git",
"directory": "packages/@jsii/python-runtime"
},
"engines": {
"node": ">= 14.6.0"
},
"main": "index.js",
"scripts": {
"generate": "ts-node build-tools/gen.ts",
"deps": "ts-node build-tools/deps.ts",
"dist-clean": "rm -rf dist",
"build": "cp ../../../README.md . && rm -f jsii-*.whl && npm run generate && npm run deps && npm run lint",
"lint": "ts-node build-tools/venv.ts black .",
"package": "package-python && package-private",
"test": "npm run test:gen && npm run test:run && npm run test:types",
"test:gen": "npm run deps && ts-node build-tools/gen-calc.ts",
"test:run": "ts-node build-tools/venv.ts py.test -v --mypy",
"test:types": "pyright -p .",
"test:update": "UPDATE_DIFF=1 npm run test"
},
"dependencies": {
"@jsii/runtime": "^0.0.0"
},
"devDependencies": {
"fs-extra": "^10.1.0",
"jsii-build-tools": "^0.0.0",
"jsii-calc": "^3.20.120",
"jsii-pacmak": "^0.0.0",
"pyright": "^1.1.272"
}
}