forked from IBM/beacon-for-ibm-dotcom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.95 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
55
56
57
58
59
60
61
62
63
{
"name": "@ibmdotcom/beacon",
"description": "Beacon for IBM.com",
"version": "0.4.3",
"repository": "https://github.com/IBM/beacon-for-ibm-dotcom",
"license": "Apache-2.0",
"engines": {
"node": ">=18.x"
},
"main": "index.js",
"bin": {
"beacon": "./cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"beacon": "lighthouse --config-path=src/config/custom-config.js",
"ci-check": "npm run format:diff && yarn lint:src",
"format": "prettier --write '**/*.{js,md}'",
"format:diff": "prettier --list-different '**/*.{js,md}'",
"jsdoc": "rimraf docs && jsdoc -c ./jsdoc.json ./README.md",
"lint": "yarn lint:src && yarn lint:dist",
"lint:src": "yarn lint:license:src && yarn lint:scripts",
"lint:dist": "yarn lint:license:dist",
"lint:license:src": "gulp lint:license:src",
"lint:license:dist": "gulp lint:license:dist",
"lint:scripts": "eslint --ext .js .",
"lint:license:staged": "tools/check-license.js -w",
"lint:scripts:staged": "eslint"
},
"dependencies": {
"lighthouse": "^8.5.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@formatjs/icu-messageformat-parser": "1.1.5",
"babel-eslint": "10.1.0",
"chrome-launcher": "^0.15.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "32.3.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-tree-shaking": "1.8.0",
"eslint-restricted-globals": "0.2.0",
"fs-extra": "^9.0.0",
"gitignore-to-glob": "^0.3.0",
"globby": "^11.0.3",
"gulp": "4.0.2",
"husky": "^4.2.0",
"jsdoc": "^3.6.7",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
}
}