-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.9 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
{
"version": "0.0.0-development",
"name": "@telus/create-library",
"description": "an opinionated npm package initializer",
"author": "Ahmad Nassri <[email protected]>",
"contributors": [
"Kyle Spaans <[email protected]>",
"Ruxandra Fediuc <[email protected]>"
],
"homepage": "https://github.com/telus/create-library",
"repository": {
"type": "git",
"url": "https://github.com/telus/create-library.git"
},
"license": "MIT",
"bin": "index.js",
"files": [
"template",
"lib"
],
"keywords": [
"telus",
"init",
"npm",
"create",
"initializer"
],
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/telus/create-library/issues"
},
"scripts": {
"lint:audit": "npx audit-ci --config .audit-ci.jsonc",
"lint:ec": "editorconfig-checker",
"lint:js": "npx @telus/telus-standard --verbose",
"lint": "npm-run-all -p -c -l lint:*",
"fix:js": "npm run lint:js -- --fix",
"format": "prettier '{,!(template)/**/}*.+(js|jsx|json|yml|yaml|css|less|scss|md|graphql|mdx)' --write",
"release:dryrun": "npx semantic-release --dry-run --branch $(git describe --contains --all HEAD)",
"release": "npx semantic-release",
"prepare": "husky install"
},
"dependencies": {
"fast-glob": "^3.2.12",
"inquirer": "^8.2.5",
"mkdirp": "^1.0.4",
"spdx-license-list": "^6.6.0",
"validate-npm-package-name": "^5.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@telus/prettier-config": "^3.3.0",
"@telus/remark-config": "^2.3.0",
"@telus/semantic-release-config": "^2.4.0",
"@telus/telus-standard": "^4.1.0",
"audit-ci": "^6.6.1",
"editorconfig-checker": "^5.0.1",
"husky": "^8.0.0",
"npm-run-all": "^4.1.5"
},
"telus-standard": {
"ignore": [
"template/"
]
}
}