-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 947 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 947 Bytes
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
{
"name": "@sam0hck/cache-checker",
"version": "1.0.0",
"description": "A simple nodeJs based tool to check website cache",
"main": "cache_checker.js",
"bin": {
"greet": "bin/index.js"
},
"scripts": {
"test": "node ./bin/index.js https://github.com",
"prettier": "./scripts/prettier.sh",
"prettier-fix": "npm run prettier"
},
"author": "sam0hack",
"license": "ISC",
"git-pre-hooks": {
"pre-commit": [
"npm run prettier-fix"
]
},
"dependencies": {
"puppeteer": "^2.1.1"
},
"devDependencies": {
"git-pre-hooks": "^1.2.1",
"prettier": "^2.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sam0hack/cache-checker.git"
},
"keywords": [
"cache",
"checker",
"node",
"javascript"
],
"bugs": {
"url": "https://github.com/sam0hack/cache-checker/issues"
},
"homepage": "https://github.com/sam0hack/cache-checker#readme"
}