forked from jscraftcamp/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 808 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 808 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
{
"name": "js-craftcamp-website",
"version": "1.0.0",
"description": "Website for the JSCC (jscraftcamp.org)",
"main": "index.js",
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"hamjest": "^3.2.3",
"harp": "^0.30.0",
"mocha": "^6.1.4",
"recursive-readdir-sync": "^1.0.6"
},
"scripts": {
"prebuild": "mkdir ./dist",
"build": "harp compile ./src ./dist; cp CNAME dist/; npm run 'build:participants.json'",
"build:participants.json": "node scripts/concat-json.js ./participants dist/participants.json; cp ./dist/participants.json ./src/",
"start": "harp server ./src",
"test": "mocha test"
},
"author": "David Losert <david.losert@virtual-identity.com>",
"license": "MIT",
"repository": "https://github.com/jscraftcamp/website.git"
}