-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "as3-to-typescript",
"version": "0.1.1",
"description": "convert as3 code base to typescript",
"main": "index.js",
"bin": {
"as3-to-typescript": "./bin/as3-to-typescript"
},
"scripts": {
"test": "node test/runner generate && node test/runner compare",
"generate": "node test/runner generate",
"accept": "node test/runner accept",
"compile": "tsc --module 'commonjs' --outDir lib --target es5 src/declarations/node.d.ts src/main/parser.ts src/main/emitter.ts src/main/command.ts",
"watch": "tsc --module 'commonjs' --outDir lib --target es5 --watch src/declarations/node.d.ts src/main/parser.ts src/main/emitter.ts src/main/command.ts"
},
"keywords": [
"actionscript",
"as3",
"typescript",
"compiler"
],
"repository": {
"type": "git",
"url": "git://github.com/fdecampredon/as3-to-typescript.git"
},
"bugs": {
"url": "https://github.com/fdecampredon/as3-to-typescript/issues"
},
"author": "François de Campredon <[email protected]>",
"licenses" : {
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"dependencies": {
"fs-extended": "^0.2.0",
"rimraf": "^2.2.8",
"sax": "~0.6.0"
},
"devDependencies": {
"typescript": "~1.3.0"
}
}