-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "skynet-cli",
"version": "0.0.2",
"description": "Skynet CLI Tool",
"main": "./lib/index.js",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"test": "sudo npm i -g && pizza",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"keywords": [
"cli",
"skynet",
"typescript",
"nodejs",
"sia"
],
"author": "Peter-Jan Brone <[email protected]>",
"license": "MIT",
"bin": {
"skycli": "./lib/index.js"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/fs-extra": "^8.0.1",
"@types/yargs": "^15.0.3",
"axios": "^0.19.2",
"chalk": "^2.4.1",
"clear": "^0.1.0",
"dotenv": "^8.2.0",
"figlet": "^1.2.1",
"form-data": "^3.0.0",
"fs-extra": "^8.1.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/node": "^10.12.10",
"nodemon": "^1.18.7",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}