-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
98 lines (98 loc) · 2.59 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nesemu",
"version": "0.9.0",
"description": "NES Emulator",
"main": "./src/main.ts",
"scripts": {
"start": "npm run default",
"default": "gulp",
"build": "gulp build",
"watch": "gulp watch",
"server": "webpack-dev-server --content-base public",
"test": "gulp test",
"lint": "gulp lint",
"lint:fix": "eslint --fix src/**/*.ts",
"release": "gulp release",
"clean": "gulp clean",
"deploy": "npm run reset-ghpages && npm run update-ghpages && npm run push-ghpages",
"reset-ghpages": "cd gh-pages && git reset --hard && git checkout gh-pages && cd ..",
"update-ghpages": "npm run release && cp -r release/* gh-pages/",
"push-ghpages": "cd gh-pages && git commit -a --amend -m 'Deploy' && git push -f && cd .."
},
"author": "tyfkda",
"repository": {
"type": "git",
"url": "https://github.com/tyfkda/nesemu"
},
"engines": {
"node": ">=16.0"
},
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"sideEffects": [
"./src/main.ts",
"./src/dc_remove_worker.ts",
"./src/dmc_channel_worker.ts",
"./src/noise_channel_worker.ts",
"./src/util/polyfill.ts"
],
"devDependencies": {
"@babel/core": "~7.23.2",
"@babel/preset-env": "~7.23.2",
"@babel/register": "~7.22.15",
"@types/escape-html": "~1.0.4",
"@types/fscreen": "~1.0.3",
"@types/jest": "~29.5.1",
"@types/md5": "~2.3.4",
"@types/node": "~20.8.10",
"@types/node-wav": "~0.0.1",
"@typescript-eslint/eslint-plugin": "~6.9.1",
"@typescript-eslint/parser": "~6.9.1",
"argv": "~0.0.2",
"browser-sync": "~3.0.2",
"clone": "~2.1.2",
"eslint": "~8.39.0",
"gulp": "~5.0.0",
"gulp-cssnano": "~2.1.3",
"gulp-ejs": "~5.1.0",
"gulp-eslint": "~6.0.0",
"gulp-htmlmin": "~5.0.1",
"gulp-jest": "~4.0.4",
"gulp-sass": "~5.1.0",
"gulp-util": "~3.0.8",
"html-loader": "~4.2.0",
"jest": "~29.5.0",
"jest-cli": "~29.5.0",
"node-wav": "~0.0.2",
"sass": "~1.62.1",
"svg-inline-loader": "0.8.2",
"ts-jest": "~29.1.0",
"ts-loader": "~9.5.0",
"ts-node": "~10.9.1",
"typescript": "~5.2.2",
"webpack": "~5.94.0",
"webpack-stream": "~7.0.0"
},
"dependencies": {
"core-js": "~3.30.1",
"escape-html": "~1.0.3",
"fflate": "~0.8.2",
"fscreen": "~1.2.0",
"md5": "~2.3.0",
"stats-js": "~1.0.1",
"stream": "~0.0.2"
}
}