-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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": "mips-js",
"version": "1.0.0",
"description": "MIPS32 assembler and emulator",
"main": "src/main.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"serve": "webpack-dev-server",
"test": "standard && mocha --require babel-polyfill --compilers js:babel-register",
"scss": "node-sass --output-style compressed -o dist/css src/ui/scss",
"build": "npm test && npm run scss && webpack -p"
},
"standard": {
"globals": [
"it",
"describe"
],
"ignore": []
},
"repository": {
"type": "git",
"url": "git://github.com/kevnchu/mips-js.git"
},
"keywords": [
"MIPS"
],
"author": "Kevin Chu",
"license": "MIT",
"homepage": "https://github.com/kevnchu/mips-js",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"mocha": "~2.5.3",
"node-sass": "^4.5.3",
"sinon": "^1.17.4",
"standard": "~7.1.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"react": "^15.6.0",
"react-dom": "^15.6.0"
}
}