forked from nuxy/slot-machine-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.81 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
{
"name": "ycg-slotmachine",
"version": "1.3.0",
"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",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smesh109/ycg-slotmachine.git"
},
"keywords": [
"javascript",
"browser",
"plugin",
"animation",
"slot",
"games"
],
"bugs": {
"url": "https://github.com/smesh109/ycg-slotmachine/issues"
},
"homepage": "https://github.com/smesh109/ycg-slotmachine#readme",
"author": "Marc S. Brooks <devel@mbrooks.info> (https://mbrooks.info)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.18.0",
"@babel/register": "^7.17.7",
"@node-minify/clean-css": "^4.0.5",
"@node-minify/cli": "^6.2.0",
"@node-minify/uglify-js": "^4.0.5",
"babel-loader": "^8.2.5",
"eslint": "^8.18.0",
"sass": "^1.53.0",
"sass-loader": "^13.0.0"
},
"overrides": {
"braces": "3.0.0",
"glob-parent": "^6.0.0",
"got": "^12.0.0",
"minimist": "^1.2.6"
}
}