-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "mips-simulator-js",
"version": "2.1.11",
"description": "MIPS Simulator npm package",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.js",
"scripts": {
"build": "rm -rf ./dist/ && tsc",
"lint": "./node_modules/.bin/eslint .",
"test": "jest",
"pre-test": "npm run build && npm run lint && npm run test",
"publish-npm": "npm run pre-test && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mipsSimulatorUNIST/simulator.git"
},
"author": "mipsSimulatorUNIST",
"license": "MIT",
"bugs": {
"url": "https://github.com/mipsSimulatorUNIST/simulator/issues"
},
"homepage": "https://github.com/mipsSimulatorUNIST/simulator#readme",
"keywords": [
"simulator",
"mips",
"assembler"
],
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"tsc-alias": "^1.8.2",
"typescript": "^4.9.4"
},
"dependencies": {
"ts-node": "^10.9.1"
},
"browser": {
"fs": false,
"path": false,
"process": false
}
}