-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
{
"name": "mips-simulator",
"version": "0.4.3",
"description": "A micro assembler and interpreter for MIPS",
"main": "src/index.js",
"bin": {
"mipc": "bin/cli.js"
},
"scripts": {
"test": "node test/test.js",
"lint:bin": "eslint bin/**/*.js",
"lint:lib": "eslint lib/**/*.js",
"lint:src": "eslint src/**/*.js",
"lint:test": "eslint test/**/*.js",
"lint": "npm run lint:bin && npm run lint:lib && npm run lint:src",
"build:docs": "jsdoc lib/* src/ -d docs -R README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BytesClub/MIPS-Simulator.git"
},
"engines": {
"node": ">=6.11.2"
},
"keywords": [
"MIPS",
"Simulator",
"Bytes-Club",
"Assembly"
],
"license": "GPL-3.0",
"author": {
"name": "Bytes Club",
"email": "bytes-club@googlegroups.com",
"url": "https://bytesclub.github.io"
},
"contributors": {
"url": "https://github.com/BytesClub/MIPS-Simulator/graphs/contributors"
},
"bugs": {
"url": "https://github.com/BytesClub/MIPS-Simulator/issues"
},
"man": [
"./man/mipc.1"
],
"homepage": "https://bytesclub.github.io/MIPS-Simulator/",
"devDependencies": {
"eslint": "^5.9.0",
"jsdoc": "^3.5.5"
}
}