-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "n64-emulator",
"version": "0.0.1",
"description": "A capable Nintendo 64 emulator",
"main": "index.js",
"author": "srikavin",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack build",
"test": "karma start karma.conf.js --single-run",
"clean": "rimraf build/",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"yarn run watch:ts\" \"yarn run watch:serve\"",
"watch:serve": "serve .",
"watch:ts": "webpack --watch --mode=development",
"watch:test": "karma start karma.conf.js"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"concurrently": "^5.2.0",
"live-server": "^1.2.1",
"mocha": "^7.1.2",
"mocha-webpack": "^1.1.0",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.0",
"karma-mocha": "^2.0.0",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"puppeteer": "^3.0.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"dependencies": {
}
}