-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 1.97 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
{
"version": "0.0.0-development",
"name": "@telus/telus-standard",
"description": "Standard for TELUS Digital",
"homepage": "https://github.com/telus/telus-standard",
"repository": {
"type": "git",
"url": "https://github.com/telus/telus-standard.git"
},
"license": "UNLICENSED",
"main": "index.js",
"bin": {
"telus-standard": "./bin/cmd.js"
},
"keywords": [
"telus"
],
"engines": {
"node": ">=18"
},
"files": [
"bin",
"index.js",
"options.js",
"eslintrc.js"
],
"bugs": {
"url": "https://github.com/telus/telus-standard/issues"
},
"scripts": {
"coverage": "opener coverage/lcov-report/index.html",
"lint:audit": "npx audit-ci --config .audit-ci.jsonc",
"lint:ec": "npx editorconfig-checker",
"lint:js": "./bin/cmd.js --verbose",
"lint": "npm-run-all -p -c -l lint:*",
"fix:js": "./bin/cmd.js --verbose --fix",
"test": "./bin/cmd.js --verbose && tape test/*.js",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"standard-engine": "^15.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-angular": "^17.6.3",
"@telus/remark-config": "^2.2.5",
"@telus/semantic-release-config": "^2.4.0",
"audit-ci": "^6.6.1",
"cross-spawn": "^7.0.3",
"editorconfig-checker": "^5.0.1",
"husky": "^8.0.3",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"run-parallel-limit": "^1.1.0",
"standard-packages": "^3.10.0",
"tape": "^5.6.3"
},
"telus-standard": {
"ignore": [
"/test"
]
}
}