-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "smartdown-gallery",
"version": "0.0.85",
"description": "Example Smartdown documents and associated resources that demonstrate various Smartdown features and serve as raw material for other Smartdown demos.",
"main": "index.js",
"scripts": {
"rmdsstore": "find . -name '.DS_Store' -print -delete",
"build": "./build.sh",
"publishgh": "TARGETTYPE=github ./github/publish.sh",
"publishgl": "TARGETTYPE=gitlab ./gitlab/publish.sh",
"servegh": "(TARGETTYPE=github npm run watch &) && (http-server -c-1 dist/)",
"servegl": "(TARGETTYPE=gitlab npm run watch &) && (http-server -c-1 dist/)",
"serve": "(npm run watch &) && (http-server -c-1 dist/)",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartdown/gallery.git"
},
"keywords": [
"smartdown",
"gallery"
],
"author": "Daniel Keith <[email protected]> (https://doctorbud.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartdown/gallery/issues"
},
"homepage": "https://github.com/smartdown/gallery#readme",
"devDependencies": {
"ejs": "^3.1.9",
"http-server": "^14.1.1",
"npm-watch": "^0.11.0"
},
"watch": {
"build": {
"ignore": [
"dist/gallery",
"dist/**"
],
"patterns": [
"./index.ejs",
"./resources/**",
"./JSPsych/**",
"./gussalufz-16-solved.exolve",
"./DataElements.csv",
"./*.md"
],
"extensions": "ejs,md,js"
}
}
}