-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
54 lines (54 loc) · 1.77 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
{
"name": "slot-machine-gen",
"version": "1.3.5",
"description": "Create an extremely biased, web-based slot machine game.",
"main": "src/slot-machine.js",
"scripts": {
"build": "babel src -s -D -d dist && npm run sass && npm run minify-css && npm run minify-js",
"lint": "eslint --ignore-path .gitignore src",
"sass": "sass src/slot-machine.scss dist/slot-machine.css",
"minify-css": "node-minify --compressor clean-css --input 'dist/slot-machine.css' --output 'dist/slot-machine.min.css'",
"minify-js": "node-minify --compressor uglify-js --input 'dist/slot-machine.js' --output 'dist/slot-machine.min.js'",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxy/slot-machine-gen.git"
},
"keywords": [
"javascript",
"html",
"web-browser",
"plugin",
"animation",
"slot-machine",
"game",
"3d-cylinder"
],
"bugs": {
"url": "https://github.com/nuxy/slot-machine-gen/issues"
},
"homepage": "https://github.com/nuxy/slot-machine-gen#readme",
"author": "Marc S. Brooks <[email protected]> (https://mbrooks.info)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.7",
"@babel/register": "^7.24.6",
"@node-minify/clean-css": "^8.0.6",
"@node-minify/cli": "^8.0.6",
"@node-minify/uglify-js": "^8.0.6",
"eslint": "^8.57.0",
"sass": "^1.77.6"
},
"overrides": {
"braces": "3.0.3",
"got": "^12.0.0"
}
}