forked from thlorenz/visulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.52 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
54
55
56
57
58
59
60
{
"name": "visulator",
"version": "0.0.0",
"description": "A machine emulator that visualizes how each instruction is processed",
"main": "index.js",
"scripts": {
"test": "npm run fixtures && tape test/*.js",
"fixtures": "make clean && make fixtures -j8",
"docme": "docme README.md -- --configure .jsdocrc && sed -e 's-/master/-/master/lib/-g' README.md > fixed.md && mv fixed.md README.md",
"watch": "watchify -d web/js/main.js -o web/js/bundle.js",
"bundle": "browserify web/js/main.js | uglifyjs >web/js/bundle.js"
},
"browser": {
"./deps/capstone.js": "./deps/capstone-browser.js"
},
"browserify": {
"transform": "hbsfy"
},
"dependencies": {
"brace": "~0.5.1",
"debug": "~2.1.3",
"handlebars": "~3.0.3",
"hbsfy": "~2.2.1",
"text-table": "~0.2.0",
"xtend": "~4.0.0"
},
"devDependencies": {
"ansicolors": "~0.3.2",
"browserify": "~9.0.8",
"ocat": "~0.1.0",
"tape": "~4.0.0",
"uglify-js": "~2.4.20",
"watchify": "~3.1.2"
},
"keywords": [
"CPU",
"emulator",
"learn",
"machine",
"computer",
"visualize"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/visulator.git"
},
"homepage": "https://github.com/thlorenz/visulator",
"license": {
"type": "GPL3",
"url": "https://github.com/thlorenz/visulator/blob/master/LICENSE"
},
"engine": {
"node": ">=0.10"
}
}