-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 881 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 881 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
30
{
"name": "@outsystems/ts2lang",
"version": "1.1.0",
"description": "TypeScript to (language) bindings generator",
"main": "ts2lang.js",
"bin": {
"ts2lang": "ts2lang-main.js"
},
"scripts": {
"build": "tsc -p src",
"test": "npm run build && copy package.json dist && node dist/ts2lang-main --file test/ts2lang.json",
"go": "npm run build && node dist/ts2lang-main",
"pack": "npm run build && copy package.json dist && cd dist && del /Q *.tgz && npm pack && copy *.tgz .. && cd .."
},
"author": "OutSystems",
"license": "ISC",
"repository": "OutSystems/ts2lang",
"preferGlobal": true,
"dependencies": {
"commander": "^2.9.0",
"glob": "^7.1.2",
"is-directory": "^0.3.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/commander": "^2.3.31",
"@types/glob": "^5.0.35",
"@types/node": "^6.0.55"
}
}