forked from izuzak/FRISCjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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": "friscjs",
"preferGlobal": false,
"version": "0.0.1",
"author": "Ivan Zuzak <[email protected]> (http://ivanzuzak.info)",
"description": "FRISC processor simulator in JavaScript",
"bugs" : "https://github.com/izuzak/FRISCjs/issues",
"homepage" : "https://github.com/izuzak/FRISCjs",
"scripts": {
"test": "node tests/runAllTests.js",
"build": "grunt"
},
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/izuzak/FRISCjs.git"
},
"contributors": [
"Ivan Budiselic <[email protected]> (https://github.com/ibudiselic)",
"Stanko Krtalic <[email protected]> (https://github.com/Stankec)"
],
"keywords": [
"processor",
"simulator",
"assembler",
"emulator",
"machine code",
"frisc",
"risc",
"educational",
"javascript",
"web application",
"nodejs"
],
"dependencies" : {
},
"devDependencies": {
"pegjs" : "0.7.0",
"grunt-peg" : "0.0.1",
"grunt-jsvalidate" : "0.1.3",
"grunt" : "0.3.14"
},
"bundleDependencies": [],
"licenses": [
{
"type" : "Apache-2.0",
"url" : "https://raw.github.com/izuzak/FRISCjs/master/LICENSE.markdown"
}
],
"engines": {
"node" : ">=0.6.10"
}
}