-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 1009 Bytes
/
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
{
"name": "beep8",
"version": "1.0.0",
"description": "BEEP8 is a tiny Javascript library that lets you quickly create games inspired by the look and feel of a retro 80s computer. It's not an emulator or a fantasy console: it's just a Javascript library. It's free and open source.",
"scripts": {
"concatenate": "concat-cli -o dist/beep8.js -f src/beep8.js src/config.js src/public.js src/public-async.js src/internal/*.js src/libraries/*.js",
"transpile": "babel dist/beep8.js --out-file dist/beep8.transpiled.js --presets=@babel/preset-env",
"minify": "uglifyjs dist/beep8.transpiled.js -o dist/beep8.min.js",
"build": "npm run concatenate && npm run transpile && npm run minify && rm dist/beep8.transpiled.js",
"dev": "nodemon"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"concat-cli": "^4.0.0",
"nodemon": "^3.1.4",
"uglify-js": "^3.18.0"
}
}