forked from simonbuchan/as3-to-typescript
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
executable file
·75 lines (75 loc) · 1.93 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
73
74
75
{
"name": "@as3web/as3-to-ts",
"version": "0.3.10",
"description": "Tool to help porting ActionScript 3.0 code to TypeScript.",
"main": "./lib/index.js",
"bin": {
"as3-to-ts": "./bin/as3-to-typescript"
},
"scripts": {
"rimraf": "rimraf",
"typings": "typings install",
"pretest": "npm run -s build",
"test": "npm run pretest && npm run test:simple && npm run test:compound",
"test:simple": "node tests/simple/SimpleTests.js",
"test:compound": "node tests/compound/CompoundTests.js",
"test:simple:win": "node %NODE_DEBUG_OPTION% tests/simple/SimpleTests.js",
"tsc": "tsc",
"clean": "npm cache clean && npm run rimraf -- node_modules lib",
"clean:dist": "npm run rimraf -- lib",
"watch": "npm run tsc -- --w",
"prebuild": "npm run clean:dist",
"build": "npm run tsc",
"version": "npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"actionscript",
"as3",
"typescript",
"compiler"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git://github.com/as3web/as3-to-ts.git"
},
"bugs": {
"url": "https://github.com/as3web/as3-to-ts/issues"
},
"author": "François de Campredon <[email protected]>",
"contributors": [
{
"name": "Endel Dreyer"
},
{
"name": "Simon Buchan"
},
{
"name": "Ushan"
}
],
"license": "Apache-2.0",
"dependencies": {
"colors": "^1.1.2",
"fs-extra": "^0.24.0",
"minimist": "^1.2.0",
"object-assign": "^4.0.1",
"readline-sync": "^1.4.4",
"sax": "~0.6.0"
},
"devDependencies": {
"colors": "^1.1.2",
"diff": "^2.2.1",
"fs-extra": "^0.24.0",
"object-assign": "^4.1.1",
"rimraf": "^2.6.1",
"sax": "^0.6.1",
"source-map-support": "^0.3.2",
"tslint": "^2.5.1",
"typescript": "^2.4.2",
"typings": "^1.3.2"
}
}