-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "ts-spectrum-engine",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "tsc -p src & browserify dist/emulator/emulator.js -o src/public/javascripts/emulator.js",
"convert": "node dist/converters/tzxconvert",
"gen": "npm run build & tsc -p generators & node dist/generate",
"test": "ts-mocha -p ./test/tsconfig.json ./test/**/*.test.ts"
},
"dependencies": {
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"morgan": "~1.9.0"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/express": "^4.17.3",
"@types/fs-extra": "^5.0.5",
"@types/http-errors": "^1.6.1",
"@types/jquery": "^3.3.29",
"@types/mocha": "^7.0.2",
"@types/morgan": "^1.9.0",
"@types/node": "^11.9.4",
"@types/shelljs": "^0.8.3",
"browserify": "^16.2.3",
"copyfiles": "^2.1.0",
"expect": "^25.1.0",
"fs-extra": "^7.0.1",
"javascript-obfuscator": "^0.18.1",
"mocha": "^7.1.0",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"spawn-command": "0.0.2-1",
"ts-mocha": "^6.0.0",
"typescript": "^3.8.3"
}
}