-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "raster",
"version": "0.7.9",
"description": "retro graphics framework",
"author": "Dustin Long <me@dustmop.io> (dustmop.io)",
"gypfile": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dustmop/rasterjs.git"
},
"scripts": {
"test": "npm run node-test && npm run web-test && npm run sdl-test && npm run example-test",
"node-test": "mocha",
"sdl-test": "mocha test/sdl/",
"example-test": "mocha test/example/",
"web-test": "karma start --single-run --browsers FirefoxHeadless karma.conf.js --",
"build": "webpack",
"addon": "node-gyp rebuild",
"dev": "webpack --config webpack.dev.js",
"postinstall": "node tools/windows_copy_dll.js"
},
"dependencies": {
"argparse": "^2.0.1",
"canvas": "^2.11.2",
"fast-xml-parser": "^4.1.3",
"gif-encoder-2": "^1.0.5",
"jpeg-js": "^0.4.3",
"node-addon-api": "^3.1.0",
"png-file-stream": "^1.0.1",
"pngjs": "^6.0.0",
"randomstring": "^1.1.5",
"rgbquant": "^1.1.2"
},
"devDependencies": {
"karma": "^6.3.4",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1"
},
"browser": {
"./src/node_env.js": false,
"./src/contrib/index.js": false
}
}