forked from facebook/memlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "@memlab/monorepo",
"private": true,
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"ansi": "^0.3.1",
"babar": "^0.2.0",
"blessed": "^0.1.81",
"chalk": "^4.0.0",
"fs-extra": "^4.0.2",
"minimist": "^1.2.0",
"puppeteer": "^13.5.1",
"string-width": "^4.2.0",
"util.promisify": "^1.1.1",
"xvfb": "^0.4.0"
},
"devDependencies": {
"@types/blessed": "^0.1.19",
"@types/fs-extra": "^9.0.3",
"@types/jest": "^27.4.1",
"@types/minimist": "^1.2.2",
"@types/node": "^12.16.3",
"@types/puppeteer": "^5.4.4",
"jest": "^27.5.1",
"typescript": "^4.6.3"
},
"scripts": {
"dev": "tsc -b -w",
"build": "npm run clean && npm run build-pkg --workspaces",
"pub": "npm run publish-patch --workspaces",
"clean": "npm run clean-pkg --workspaces && rm -rf ./website/build",
"memlab": "node packages/cli/dist/runner.js",
"test": "npm run test-pkg --workspaces --if-present",
"build-pkg": "npm run error",
"clean-pkg": "npm run error",
"test-pkg": "npm run error",
"publish-patch": "npm run error",
"error": "echo 'upgrade node.js to version 16.0.0 or above. Consider using nvm.'; exit 1"
},
"devEngines": {
"node": "12.x || 13.x || 14.x || 15.x || 16.x",
"npm": "7.x"
},
"workspaces": [
"./packages/core",
"./packages/e2e",
"./packages/heap-analysis",
"./packages/api",
"./packages/cli",
"./packages/memlab"
]
}