-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.06 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": "math-power",
"version": "1.7.0",
"description": "Web app for AWS experimenting via simple math operations",
"main": "index.html",
"scripts": {
"watch": "tsc --build --watch",
"\n\b\b-------": "",
"copy-css": " copy /y \".\\src\\*.css\" \".\\dist\" > NUL || cp \"./src/\"*.css \"./dist\" ",
"compile-css": "npm run copy-css",
"compile-js": "tsc",
"\n\b\b------- ": "",
"test": "ECHO.Testing latest build... && node ./src/tests.js",
"debug": "ECHO.Debugging tests... && node --inspect ./src/tests.js",
"\n\b\b------- ": "",
"min-css": "cleancss --source-map --source-map-inline-sources --output ./dist/bundle.css -- ./dist/calc.css",
"min-js": "uglifyjs --compress --mangle --source-map \"includeSources,url='./bundle.js.map',content=inline\" --output ./dist/bundle.js -- ./dist/calc.js ./dist/browser.js",
"\n\b\b------- ": "",
"build": "ECHO.Starting new build... && node clean.js && npm run compile-css && npm run compile-js && npm test && ECHO.Build compiled and passed tests. && npm run min-css && npm run min-js && ECHO.Build minified -- ready to deploy.",
"\n\b\b------- ": "",
"preview": "START \"\" ./index.html",
"start": "ECHO.Starting browser with latest build... && npm run preview",
"\n\b\b------- ": "",
"gh": " START \"\" /b \"C:\\data\\apps\\git\\gh-pages merge from master.bat\" ",
"_publish_git_commands_": "git checkout gh-pages && git merge master && git push origin gh-pages && git checkout -",
"publish": "ECHO.Publishing latest build... && npm test && npm run gh . && git checkout - && ECHO.DONE."
},
"keywords": [
"AWS",
"Amazon",
"Web",
"Services",
"experimenting",
"math",
"operations",
"maths"
],
"author": "Darren Semotiuk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DarrenSem/math-power"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.415.0",
"@types/node": "^20.5.3",
"aws-sdk": "^2.1459.0",
"clean-css": "^5.3.2",
"clean-css-cli": "^5.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"uglify-js": "^3.17.4"
}
}