forked from MARIE-js/MARIE.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "MARIE.js",
"version": "1.2.0",
"description": "MARIE.js is an implementation of a simulator for a 'Machine Architecture that is Really Intuitive and Easy' from The Essentials of Computer Organization and Architecture (Linda Null, Julia Lobur) in JavaScript.",
"main": "main.js",
"scripts": {
"start": "grunt bar-dev",
"build": "grunt build",
"deploy": "grunt build && gh-pages -d build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://marie-js.github.io/MARIE.js",
"repository": {
"type": "git",
"url": "https://github.com/MARIE-js/MARIE.js.git"
},
"keywords": [
"mariejs",
"marie",
"assembly",
"learninggrunt ",
"javascript"
],
"author": "Jason Nguyen, Saurabh Joshi, Eric Jiang and Erfan Norozi",
"license": "MIT",
"bugs": {
"url": "https://github.com/MARIE-js/MARIE.js/issues"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"grunt": "^1.0.3",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "~1.0.2",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-ejs": "~0.3.0",
"grunt-html": "^7.0.0",
"grunt-jsdoc": "~2.1.0",
"grunt-open": "~0.2.3",
"grunt-regenerator": "^3.1.0",
"load-grunt-tasks": "^3.5.0"
},
"dependencies": {
"electron": "^1.3.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-connect": "~1.0.2",
"grunt-jsdoc": "~2.1.0",
"load-grunt-tasks": "^3.5.0"
}
}