forked from carlosmiei/ast-transpiler
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.83 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
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
{
"name": "ast-transpiler",
"version": "0.0.60",
"type": "module",
"module": "./dist/transpiler.js",
"types": "./dist/transpiler.d.ts",
"exports": {
".": {
"require": "./dist/transpiler.cjs",
"import": "./dist/transpiler.js",
"types": "./dist/transpiler.d.ts"
}
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ccxt/ast-transpiler"
},
"readme": "README.md",
"scripts": {
"build": "npm run lint && tsup src/transpiler.ts --format cjs,esm --dts --clean --splitting --shims",
"build2": "npm run lint && tsc",
"start": "node --loader ts-node/esm manual.ts",
"start-py": "node --loader ts-node/esm src/pythonTranspiler.ts",
"test-ci": "jest --ci --coverage",
"test": "jest --verbose",
"testv": "jest --verbose --coverage",
"integration": "node --loader ts-node/esm tests/integration/test.ts",
"lint": "eslint src/ --ext .ts",
"publishPackage": "sh publish.sh && git push && git push --tags && npm publish"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"test-jest": "^1.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsup": "^6.4.0"
},
"dependencies": {
"colorette": "^2.0.19",
"piscina": "^3.2.0",
"typescript": "^4.8.4"
},
"author": {
"name": "Carlos Gonçalves",
"url": "https://github.com/carlosmiei"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ccxt/ccxt/issues"
},
"homepage": "https://ccxt.com",
"keywords": [
"transpiling",
"transpiler",
"ast",
"javascript",
"typescript",
"python",
"php",
"compiler",
"esm",
"cjs"
]
}