-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"version": "0.0.0-development",
"name": "@telus/browserslist-config",
"description": "TELUS Shared Browserslist Config",
"author": "TELUS digital (https://telus.com/digital)",
"homepage": "https://github.com/telus/browserslist-config",
"repository": {
"type": "git",
"url": "https://github.com/telus/browserslist-config.git"
},
"license": "MIT",
"main": "index.js",
"keywords": [
"telus",
"telusdigital",
"browserslist",
"config"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8"
},
"files": [
"index.js"
],
"bugs": {
"url": "https://github.com/telus/browserslist-config/issues"
},
"scripts": {
"coverage": "opener coverage/lcov-report/index.html",
"lint:audit": "npm audit",
"lint:ec": "npx editorconfig-checker .",
"lint:md": "npx remark --quiet --frail .",
"lint": "npx npm-run-all -p -c -l lint:*",
"setup-local": "npx install-group peer --package @telus/build-essential --no-save",
"fix:md": "npm run lint:md -- -o"
}
}