-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "publix-coupon-clipper",
"version": "4.0.0",
"description": "Automatically clip Publix digital coupons",
"homepage": "https://github.com/davecardwell/publix-coupon-clipper#readme",
"author": {
"name": "Dave Cardwell",
"url": "https://www.davecardwell.com/"
},
"license": "GPL-3.0",
"main": "dist/index.node.js",
"bin": "dist/index.node.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=14.17.0"
},
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf dist/ tsconfig.tsbuildinfo",
"prebuild": "npm run clean",
"build": "npm run build:module && npm run build:node",
"build:module": "tsc",
"build:node": "rollup --config rollup.config.js",
"prewatch": "npm run clean",
"watch": "nodemon --config nodemon.json --exec concurrently --kill-others --names module,node 'npm run watch:module' 'npm run watch:node'",
"watch:module": "npm run build:module -- --watch",
"watch:node": "wait-on dist/index.js && npm run build:node -- --watch",
"pretest": "eslint --ignore-path .gitignore --max-warnings 0 --ext js,ts .",
"test": "exit 0",
"release": "npx --no-install semantic-release",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --ignore-path .gitignore --max-warnings 0"
],
"**/!(*.{js,ts})": [
"prettier --check --ignore-unknown"
]
},
"dependencies": {
"inquirer": "^8.1.0",
"puppeteer": "^9.1.1",
"typed-emitter": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/inquirer": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"concurrently": "^6.2.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.50.0",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"semantic-release": "^17.4.3",
"semver": "^7.3.5",
"typescript": "^4.2.4",
"wait-on": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/davecardwell/publix-coupon-clipper.git"
},
"bugs": {
"url": "https://github.com/davecardwell/publix-coupon-clipper/issues"
},
"keywords": [
"publix",
"groceries",
"coupons"
]
}