forked from americanexpress/one-app-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "one-app-cli",
"private": true,
"workspaces": [
"packages/*"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/one-app-cli.git"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.12.0"
},
"scripts": {
"test": "yarn test:unit",
"test:lint": "eslint --ext js,jsx,snap,md .",
"test:unit": "cross-env NODE_ENV=production jest",
"test:git-history": "commitlint --from origin/main --to HEAD",
"posttest": "yarn test:lint && yarn test:git-history && yarn test:lockfile",
"test:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts registry.yarnpkg.com --validate-https",
"lerna:version": "lerna version --include-merged-tags",
"lerna:publish": "lerna publish from-git --yes"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"amex-jest-preset": "^6.1.0",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.2.2",
"eslint": "^7.32.0",
"eslint-config-amex": "^11.0.1",
"husky": "^4.3.0",
"jest": "^27.2.5",
"lerna": "^4.0.0",
"lockfile-lint": "^4.1.0",
"mock-fs": "^5.1.1",
"prop-types": "*",
"regenerator-runtime": "^0.13.7"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}