-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "paradox",
"version": "1.0.0",
"description": "Remote Script Runner",
"main": "index.js",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/fs-extra": "^5.0.4",
"@types/morgan": "^1.7.35",
"@types/request": "^2.47.1",
"appdirectory": "^0.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"commander": "^2.18.0",
"express": "^4.16.3",
"fs-extra": "^7.0.0",
"morgan": "^1.9.1",
"request": "^2.88.0",
"ts-loader": "^5.1.0"
},
"devDependencies": {
"@types/node": "^10.10.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.3"
},
"scripts": {
"clean": "rm -rf ./build",
"build": "npm run tslint && npm run build-ts && npm run build-executables",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"build-ts": "tsc",
"build-executables": "pkg -t linux-x86,linux-x64,win-x86,win-x64,macos-x86,macos-x64 build/paradox.js --output build/binaries/paradox",
"watch-ts": "tsc -w"
},
"pkg": {
"assets": "node_modules/bcrypt/lib/binding/bcrypt_lib.node"
},
"keywords": [
"remote script",
"remote",
"shell script"
],
"author": "Anupam Basak",
"license": "ISC"
}