-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 KB
/
package.json
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
{
"name": "python-typing-to-typescript",
"version": "1.1.0",
"description": "Convert python TypedDict's and type hints to typescript interface",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"walk-test-script": "ts-node tests/utils/typescript_walk_nodes.ts tests/utils/target_test_script.ts",
"build": "tsc py_ast_json_to_ts.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"pretest": "npm run build",
"prepublish": "npm run build"
},
"bin": {
"pttts": "py_ast_json_to_ts.js",
"pytticus": "py_ast_json_to_ts.js"
},
"keywords": [
"transpiler",
"python transpiler",
"typing",
"type",
"API",
"schema",
"typescript",
"json schema"
],
"author": "Matt Yan",
"license": "ISC",
"dependencies": {
"argparse": "^2.0.1",
"temp": "^0.9.4",
"typescript": "^4.1.2"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/argparse": "^2.0.4",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.12",
"@types/temp": "^0.8.34",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1"
}
}