-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "deoptigate",
"version": "0.7.1",
"description": "Investigates v8/Node.js function deoptimizations.",
"bin": "./bin/deoptigate",
"main": "deoptigate.js",
"files": [
"app/build",
"app/lib",
"bin/",
"lib/",
"deoptigate*"
],
"scripts": {
"test": "tape test/*.test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/deoptigate.git"
},
"homepage": "https://github.com/thlorenz/deoptigate",
"dependencies": {
"ansicolors": "~0.3.2",
"files-provider": "~0.2.0",
"ispawn": "~0.2.0",
"mkdirp": "~0.5.1",
"opn": "~5.4.0",
"semver": "^7.3.6",
"v8-tools-core": "~0.1.1"
},
"keywords": [],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/deoptigate/blob/master/LICENSE"
},
"engine": {
"node": ">=8"
},
"devDependencies": {
"escape-string-regexp": "^4.0.0",
"tape": "^5.0.0"
}
}