-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.19 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
{
"name": "ixmilia.calc",
"version": "0.1.0",
"description": "A graphing calculator",
"main": "./out/index.js",
"type": "module",
"scripts": {
"compile:tsc": "tsc -p ./",
"compile:rollup": "npx rollup -c rollup.config.js ./out/src/index.js --file ./dist/app.js --format iife",
"compile:copyres": "npx copyfiles --error --verbose --up 2 \"./src/resources/**/*\" ./dist",
"compile:rewrite-index": "node ./scripts/rewrite-index.js ./dist/index.html",
"compile": "npm run compile:tsc && npm run compile:rollup && npm run compile:copyres && npm run compile:rewrite-index",
"debug": "npm run compile:tsc && mocha out/tests/**/*.test.js --inspect",
"build": "npm run compile",
"start": "npm run compile && start ./dist/index.html",
"test:run": "mocha out/tests/**/*.test.js",
"test": "npm run compile:tsc && npm run test:run",
"watch": "tsc -watch -p ./"
},
"repository": "https://github.com/ixmilia/calc",
"author": "IxMilia",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"chai": "^5.0.3",
"copyfiles": "^2.4.1",
"mocha": "^10.2.0",
"rollup": "^4.9.6",
"typescript": "^5.3.3"
}
}