-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 831 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "oogebra-core",
"version": "0.3.0",
"description": "The core for OoGebra",
"main": "index.js",
"types": "./index.d.ts",
"repository": "github:warnio/OoGebra-Core",
"scripts": {
"build": "tsc && npm run beautify && npm run uglify && npm run ggbify",
"beautify": "uglifyjs ./dist/module.js -o ./dist/module.ggb.js -b \"quote_style=1\"",
"uglify": "uglifyjs ./dist/module.js -m -o ./dist/module.ggb.min.js -b \"beautify=false,quote_style=1\"",
"ggbify": "replace-in-file \"/\\\"/g\" \"\\\\u0022\" \"**/*.ggb.js,**/*.ggb.min.js\" --isRegex",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dylan Groeneveld",
"license": "MIT",
"devDependencies": {
"replace-in-file": "^6.1.0",
"typescript": "^3.9.2",
"uglify-js": "^3.9.3"
},
"dependencies": {}
}