-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "resolve-jit-symbols",
"version": "0.5.0",
"description": "Resolves symbols for dynamic code generated by a JIT via a map file.",
"main": "index.js",
"bin": {
"rjs": "bin/rjs"
},
"scripts": {
"test": "tap test/*.js",
"watch": "watchify -d web/main.js -o web/bundle.js",
"bundle": "browserify web/main.js | uglifyjs > web/bundle.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/resolve-jit-symbols.git"
},
"homepage": "https://github.com/thlorenz/resolve-jit-symbols",
"dependencies": {
"pretty-trace": "~0.3.1"
},
"devDependencies": {
"browserify": "~6.3.2",
"tap": "~0.4.3",
"uglify-js": "~2.4.15",
"watchify": "~2.1.1"
},
"keywords": [
"jit",
"debug",
"trace",
"resolve",
"symbol"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/resolve-jit-symbols/blob/master/LICENSE"
},
"engine": {
"node": ">=0.8"
}
}