-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "iroh",
"version": "0.3.0",
"description": "Intercept, record and analyze JavaScript at runtime",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/maierfelix/iroh.git"
},
"main": "dist/iroh-node.js",
"module": "dist/iroh-node.es.js",
"browser": "dist/iroh-browser.js",
"keywords": [
"iroh",
"analysis",
"dynamic",
"runtime",
"realtime",
"debug",
"visual"
],
"homepage": "http://maierfelix.github.io/Iroh/",
"author": "Felix Maier <xilefmai@gmail.com>",
"contributors": [
"Felix Maier <xilefmai@gmail.com> (https://github.com/maierfelix)"
],
"bugs": {
"url": "https://github.com/maierfelix/Iroh/issues"
},
"engines": {
"node": ">= 6.x"
},
"scripts": {
"dist": "npm run build && npm run browser",
"build": "rollup -c rollup/rollup.config.cjs.js && rollup -c rollup/rollup.config.es.js",
"browser": "rollup -c rollup/rollup.config.iife.js",
"test": "node tests/index.js"
},
"devDependencies": {
"rollup": "^0.47.2",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0"
},
"dependencies": {
"acorn": "^5.1.1",
"astring": "^1.0.5"
}
}