-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 740 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "triangles-js",
"version": "1.0.0",
"description": "",
"scripts": {
"watch": "parcel index.html",
"build": "parcel build index.html --no-source-maps --public-url ./",
"profile-build": "tsc profile/profile.ts --target es6 --module es6 -outDir profile-out/temp/",
"profile-pack": "node pack.js profile-out/temp/ profile-out/profile.js",
"profile-run": "d8.exe --log-all profile-out/profile.js",
"profile": "npm run profile-build && npm run profile-pack && npm run profile-run"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/resolver-glob": "^2.8.2",
"@parcel/transformer-raw": "^2.8.2",
"glob": "^8.0.3",
"parcel": "^2.8.2",
"typescript": "^4.9.4"
}
}