-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.4 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
{
"name": "css-mashlib",
"version": "1.0.0",
"description": "CSS with mashlib recipe",
"main": "index.js",
"scripts": {
"start0": "npx @solid/community-server -c ./config/config-mashlib.json ./config/override-pod-templates.json -f ./data",
"start1": "NODE_TLS_REJECT_UNAUTHORIZED=0 && npx @solid/community-server -c ./config/https-mashlib-suffix-file.json -f ./data --httpsKey ../privkey.pem --httpsCert ../fullchain.pem -b https://localhost:3000",
"start": "npx @solid/community-server -c ./config/http-mashlib-suffix-file.json -f ./data",
"start-subdomain": "npx @solid/community-server -c ./config/http-mashlib-subdomain-file.json -f ./data",
"build": "echo \"Nothing to build.\"",
"clean": "[ -d ./data ] && rm -rf ./data || true",
"start:clean": "npm run clean && npm run start",
"test": "echo \"Error: no test specified\" && exit 1",
"templates": "cp -r templates/ ./node_modules/@solid/community-server/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solidos/css-mashlib.git"
},
"keywords": [
"css",
"mashlib",
"node",
"javascript"
],
"author": "Alain Bourgeois",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidos/css-mashlib/issues"
},
"homepage": "https://github.com/solidos/css-mashlib#readme",
"dependencies": {
"@solid/community-server": "^7.0.4",
"mashlib": "^1.8.10-alpha"
}
}