-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "isolated-runtime-monorepo",
"version": "1.0.0",
"description": "Isolated Runtime",
"private": true,
"main": "index.js",
"devDependencies": {
"chance": "^1.0.18",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.7.1",
"jest-extended": "^0.11.1",
"lerna": "^3.13.2",
"prettier": "^1.16.4"
},
"config": {
"benchmark": {
"requests": 500,
"time": 60000
}
},
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"postinstall": "lerna bootstrap --hoist",
"test": "node --experimental-worker node_modules/.bin/jest",
"posttest": "eslint --fix .",
"benchmark": "node --experimental-worker benchmark $npm_package_config_benchmark_requests $npm_package_config_benchmark_time"
},
"engines": {
"node": ">=10.6.0"
},
"keywords": [],
"author": "",
"license": "ISC"
}