forked from dylanwh/tocotrienol
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 864 Bytes
/
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
{
"name": "tocotrienol",
"version": "1.0.6",
"description": "a usable command line openpgp program",
"main": "index.js",
"types": "index.d.ts",
"preferGlobal": true,
"bin": {
"tct": "index.js"
},
"scripts": {
"build": "tsc",
"buildexe": "./buildexe.sh",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"argparse": "^1.0.10",
"encoding": "^0.1.12",
"openpgp": "^3.0.7",
"spawn-sync": "^1.0.15",
"thread-sleep": "^2.0.0",
"try-thread-sleep": "^1.0.2",
"yargs": "^11.0.0"
},
"author": "Dylan Hardison <[email protected]>",
"license": "GPL3",
"devDependencies": {
"@types/core-js": "^0.9.46",
"@types/node": "^9.6.6",
"@types/yargs": "^11.0.0",
"nexe": "^2.0.0-rc.26",
"typescript": "^2.5.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
}
}