-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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
49
50
51
52
53
54
{
"name": "dolcegusto-cli",
"version": "0.0.2",
"description": "Automates promo code submission",
"main": "lib-es5/index.js",
"scripts": {
"start": "node src/cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib-es5",
"build:bin": "babel src -d lib-es5 && pkg package.json --out-path bin && node upx.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepublishOnly": "npm run build"
},
"bin": {
"dolcegusto-cli": "lib-es5/cli.js"
},
"author": "Marcelo Paixão Resende",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"axios-cookiejar-support": "^1.0.0",
"chalk": "^4.0.0",
"cheerio": "^1.0.0-rc.3",
"clui": "^0.3.6",
"configstore": "^5.0.1",
"figlet": "^1.3.0",
"inquirer": "^7.1.0",
"minimist": "^1.2.5",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"pkg": "^4.4.7",
"upx": "^1.0.6"
},
"pkg": {
"assets": "node_modules/figlet/fonts/*",
"targets": [
"node12.16.1-win-x64",
"node12.16.1-linux-x64",
"node12.16.1-macos-x64"
]
}
}