This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
55 lines (55 loc) · 1.74 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
{
"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": "yarn test:unit:cjs && yarn test:unit:esm",
"test:unit:cjs": "cross-env NODE_ENV=production jest --run-in-band --config=jest.cjs.config.js",
"test:unit:esm": "cross-env NODE_ENV=production jest --run-in-band --config=jest.esm.config.js",
"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-package --yes"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@testing-library/jest-dom": "5.0.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": "8.29.0",
"eslint-config-amex": "^15.2.1",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^4.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"
}
}
}