-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "as2ts-smart",
"version": "1.0.12",
"description": "An useful tool to translate actionscript code to typescript.",
"main": "bin/index.js",
"scripts": {
"test": "node bin/index.js -s 'example\\test\\asproj\\src\\' --dist 'example\\test\\tsproj\\src\\'",
"test2": "node bin/index.js -s 'example\\test2\\asproj\\src\\' --dist 'example\\test2\\tsproj\\src\\'",
"local": "node bin/index.js -s 'E:\\qhgame\\trunk\\project\\src\\' --dist 'E:\\qhgame\\tsproj\\src\\' -r 'example\\rule.json'",
"build": "tsc",
"release": "npm config set registry=http://registry.npmjs.org && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Halliwood/as2ts.git"
},
"keywords": [
"typescript",
"actionscript",
"ts",
"as3",
"translation"
],
"author": "teppei",
"bin": "bin/as2ts-smart",
"license": "ISC",
"bugs": {
"url": "https://github.com/Halliwood/as2ts/issues"
},
"homepage": "https://github.com/Halliwood/as2ts#readme",
"devDependencies": {
"@types/node": "^14.0.27",
"@types/typescript": "^2.0.0",
"dtsmake": "0.0.10"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^3.9.0",
"commander": "^6.0.0",
"typescript": "^3.9.7"
}
}