-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.53 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": "@foo-software/binoculars",
"version": "1.0.5",
"description": "A tool to measure web page SEO friendliness",
"main": "dist/index.js",
"bin": {
"binoculars": "bin/binoculars.js"
},
"scripts": {
"binoculars": "node dist/bin/binoculars.js",
"clean": "rimraf coverage dist tmp",
"build": "npm run clean && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"generate": "plop",
"jest": "jest",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "npm run build",
"start:integration-server": "node dist/bin/integration-server.js",
"test": "npm run test:unit:coverage && LOG_LEVEL=off npm run test:integration",
"test:integration": "jest ./__tests__/integration --runInBand",
"test:unit": "jest ./__tests__/unit",
"test:unit:coverage": "jest ./__tests__/unit --coverage",
"test:unit:watch": "jest ./__tests__/unit --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/binoculars.git"
},
"keywords": [
"automated",
"seo",
"test",
"tools",
"seo testing",
"automated seo testing",
"seo integration testing"
],
"author": "Adam Henson <adamhenson1979@gmail.com> (https://github.com/adamhenson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/foo-software/binoculars/issues"
},
"homepage": "https://github.com/foo-software/binoculars#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"npm run lint"
]
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/meow": "^5.0.0",
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@types/puppeteer": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"camelcase": "^6.0.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"husky": "^4.2.5",
"jest": "^26.4.0",
"lint-staged": "^10.2.11",
"pascalcase": "^1.0.0",
"plop": "^2.7.4",
"prettier": "^2.0.5",
"puppeteer": "^5.3.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@foo-software/lighthouse-persist": "^1.1.5",
"@slack/webhook": "^5.0.3",
"@types/express": "^4.17.8",
"express": "^4.17.1",
"meow": "^7.1.0",
"node-fetch": "^2.6.1",
"winston": "^3.3.3"
}
}