-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 770 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 770 Bytes
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
{
"name": "back-2",
"version": "0.0.1",
"description": "https://en.wikipedia.org/wiki/N-back",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare:cert": "bash ./make_cert.sh",
"prepare:mustache": "terser --module --compress --mangle -o ./src/utils/mustache.min.mjs -- ./node_modules/mustache/mustache.mjs",
"prepare": "npm run prepare:cert && npm run prepare:mustache",
"gh-pages": "bash ./make_gh_pages.sh",
"start": "http-server ./src --ssl -C cert.pem -p 443 -b -g"
},
"keywords": [
"n-back"
],
"author": "gor2991@ya.ru",
"license": "MIT",
"dependencies": {
"mustache": "^4.2.0"
},
"devDependencies": {
"http-server": "^14.0.0",
"terser": "^5.10.0"
}
}