-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
100 lines (100 loc) · 2.73 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "create-using-template",
"version": "1.11.2",
"description": "A simple project generator",
"contributors": [
"One App Team <[email protected]>"
],
"bin": {
"create-using-template": "bin/index.js"
},
"engines": {
"node": ">=18.x.x <=20.x.x",
"npm": ">=9.x.x <=10.x.x"
},
"scripts": {
"test": "npm run test:unit",
"test:lint": "eslint --ext js,jsx,snap,md .",
"test:spellcheck": "mdspell \"**/*.md\" \"!**/node_modules/**/*.md\" \"!CHANGELOG.md\" -n -a -r --en-us",
"test:unit": "cross-env NODE_ENV=production jest",
"test:git-history": "commitlint --from origin/main --to HEAD",
"posttest": "npm run test:spellcheck && npm run test:lint && npm run test:git-history && npm run test:lockfile",
"test:lockfile": "lockfile-lint --path package-lock.json --allowed-hosts registry.npmjs.org --validate-https"
},
"keywords": [
"generator",
"create",
"init"
],
"homepage": "https://github.com/americanexpress/create-using-template",
"bugs": {
"url": "https://github.com/americanexpress/create-using-template/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/create-using-template.git"
},
"author": "One App",
"license": "Apache-2.0",
"dependencies": {
"cross-spawn": "^7.0.3",
"data-store": "^4.0.3",
"ejs": "^3.1.9",
"kleur": "^4.1.4",
"prettier": "^2.8.8",
"prompts": "^2.4.1",
"semver": "^7.3.5",
"sisteransi": "^1.0.5",
"yargs": "^17.6.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"amex-jest-preset": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^27.6.2",
"eslint-plugin-jest-dom": "^4.0.3",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lockfile-lint": "^4.12.1",
"markdown-spellcheck": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"jest": {
"preset": "amex-jest-preset"
}
}