-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.36 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
{
"name": "ezs",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=12.0.0",
"yarn": ">= 1.0.0",
"npm": "Please use Yarn instead of NPM to install dependencies. See: https://yarnpkg.com/lang/en/docs/install/"
},
"devDependencies": {
"@babel/cli": "7.13.14",
"@babel/core": "7.13.15",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-json-strings": "7.13.8",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.13.8",
"@babel/preset-env": "7.13.15",
"@babel/register": "7.13.14",
"@types/jest": "26.0.22",
"@types/ramda": "0.27.40",
"array-parallel": "0.1.3",
"array-series": "0.1.5",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"coveralls": "3.1.1",
"documentation": "14.0.3",
"eslint": "7.24.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.4.0",
"feed": "4.2.2",
"from": "0.1.7",
"get-stream": "6.0.1",
"git-cz": "4.7.6",
"jest": "26.6.3",
"lerna": "4.0.0",
"nock": "13.0.11",
"node-fetch": "2.7.0",
"prettier": "2.3.2",
"semver": "7.5.2",
"sleepjs": "3.0.1"
},
"scripts": {
"release:version": "lerna version --exact --conventional-commits",
"release:publish": "lerna publish from-package",
"commit": "git status && npx git-cz -a",
"build": "yarn workspaces run build",
"ci:install": "yarn install --ignore-engines --frozen-lockfile && yarn run build",
"ci:test": "yarn run test:all",
"doc": "yarn workspaces run doc",
"lint": "yarn workspaces run --no-bail lint",
"pretest": "yarn install && yarn run build",
"test": "yarn run test:all",
"test:all": "NODE_ENV=test jest --maxWorkers 4 --verbose",
"test:debug": "NODE_ENV=test jest --runInBand --detectOpenHandles",
"coverage": "NODE_ENV=test jest --ci --runInBand --reporters=default --collectCoverage --coverageReporters=text --coverage",
"coverage:html": "NODE_ENV=test jest --ci --runInBand --reporters=default --collectCoverage --coverageReporters=html --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}