forked from Availity/sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.72 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@availity/sdk-js",
"private": true,
"description": "Javascript SDK for Availity",
"workspaces": [
"packages/*",
"docs"
],
"repository": {
"type": "git",
"url": "https://github.com/Availity/sdk-js.git"
},
"scripts": {
"codecov:ci": "codecov",
"lint": "eslint .",
"start": "yarn workspace @availity/docs start",
"deploy:docs": "yarn workspace @availity/docs build:deploy && gh-pages -d docs/public --message 'deployed docs [skip ci]'",
"build:docs": "yarn workspace @availity/docs build",
"build": "NODE_ENV=production lerna exec --parallel -- babel --root-mode upward src -d lib --ignore ./docs/**,**/*.test.js",
"bootstrap": "lerna bootstrap --use-workspaces",
"link": "lerna link",
"bundlesize": "bundlesize",
"updated": "lerna updated",
"clean": "lerna clean --yes",
"prePublish": "yarn build",
"publish": "lerna publish",
"publish:canary": "lerna publish -c",
"preTest": "yarn build",
"prettier": "prettier --write '**/*.{js,ts}'",
"test": "jest",
"test:ci": "yarn test --runInBand --collectCoverage",
"postinstall": "npm run bootstrap",
"release": "npm run check:packages && yarn run publish --yes",
"release:ci": "yarn run publish --yes",
"release:canary": "npm run check:packages && lerna publish -c",
"check": "npm-check -u && lerna exec --bail false --concurrency 1 -- npm-check -u",
"add": "sh ./scripts/add.sh",
"nuke": "npm run remove-locks && yarn clean",
"remove-locks": "find . -type f -name 'package-lock.json' -delete",
"check:packages": "sh ./scripts/artifactory-check.sh",
"pub": "lerna exec --bail false --concurrency 1 -- npm publish",
"new": "plop"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.5.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/plugin-transform-shorthand-properties": "^7.0.0",
"@babel/preset-env": "^7.5.3",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/config-lerna-scopes": "^8.0.0",
"babel-jest": "^24.1.0",
"babel-preset-react-app": "^9.1.0",
"bundlesize": "^0.18.0",
"codecov": "^3.5.0",
"conventional-changelog-cli": "^2.0.11",
"conventional-recommended-bump": "^6.0.0",
"eslint-config-availity": "^5.2.3",
"gh-pages": "^2.1.1",
"husky": "^3.0.0",
"jest": "^24.1.0",
"jest-environment-jsdom": "^24.9.0",
"jest-environment-jsdom-global": "^1.1.0",
"lerna": "^3.11.0",
"lint-staged": "^9.1.0",
"nock": "^10.0.6",
"plop": "^2.3.0",
"prettier": "^1.13.7",
"typescript": "^3.6.4",
"xhr-mock": "^2.4.1"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"jest --bail --findRelatedTests",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
],
"rules": {
"header-max-length": [
0,
"always",
85
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"bundlesize": [
{
"path": "./packages/**/lib/index.js",
"maxSize": "1.5 kB"
}
],
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}