-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.32 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": "theoapp-cli",
"version": "0.15.0",
"description": "Theo's CLI",
"repository": "theoapp/theo-cli",
"main": "build/main.js",
"bin": {
"theo": "build/main.js"
},
"scripts": {
"start:dev": "babel-node src/main.js",
"build": "babel -D src -d build",
"build:dev": "babel -D --watch src --out-dir build",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"preversion": "npm run lint && npm run test",
"test": "mocha tests/*.test.js"
},
"author": "Michele <[email protected]> (macno)",
"license": "Apache-2.0",
"dependencies": {
"cli-table": "^0.3.4",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.1",
"sshpk": "^1.16.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"babel-eslint": "^10.0.3",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^8.2.1",
"prettier": "^1.18.0"
}
}