-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "emisor-workspace",
"private": true,
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/eslint-parser": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@stryker-mutator/core": "^4.4.1",
"@stryker-mutator/jest-runner": "^4.4.1",
"acorn-private-class-elements": "^1.0.0",
"acorn-private-methods": "^1.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"core-js": "3",
"deepmerge": "^4.2.2",
"eslint": "^7.7.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^24.1.3",
"git-cz": "^4.7.0",
"jest": "^26.2.2",
"jest-extended": "^0.11.5",
"lerna": "^3.22.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-terser": "^7.0.0"
},
"workspaces": [
"packages/emisor",
"packages/core",
"packages/plugins/*"
],
"scripts": {
"test": "BABEL_ENV=test jest",
"test:watch": "BABEL_ENV=test jest --watchAll --maxWorkers=100%",
"test:build": "BABEL_ENV=test-build jest",
"test:mutation": "BABEL_ENV=test stryker run",
"build": "lerna run build",
"lint": "eslint .",
"cz": "git-cz"
},
"engines": {
"node": ">11"
}
}