-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1001 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1001 Bytes
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
{
"name": "swift2ts",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"doc": "typedoc --tsconfig ./tsconfig.json",
"grammar": "antlr4ts -no-listener -visitor ./grammar/SwiftLexer.g4 ./grammar/SwiftParser.g4 -o ./src/transpiler/generated",
"lint": "tslint -c tslint.json -p tsconfig.json",
"package": "electron-packager ./build Swift2TypeScript --all --out=./dist --overwrite",
"start": "npm run build && electron ./build/main.js",
"watch": "tsc -w"
},
"repository": "",
"author": "EternalPhane",
"devDependencies": {
"antlr4ts-cli": "^0.4.0-alpha.4",
"electron": "^1.8.4",
"electron-package": "^0.1.0",
"tslint": "^5.10.0",
"tslint-language-service": "^0.9.9",
"typedoc": "^0.11.1",
"typedoc-plugin-external-module-name": "^1.1.1",
"typescript": "^2.8.3"
},
"dependencies": {
"antlr4ts": "^0.4.1-alpha.0"
}
}