-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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
{
"name": "thunder-docs",
"version": "1.0.0",
"description": "documentation for thunder and related modules",
"main": "index.js",
"scripts": {
"start": "budo index.js --pushstate --open",
"sync": "rm -rf ~/.ecosystem-docs && node build.js",
"convert": "rm -rf tutorials/build && node convert.js",
"build": "npm run sync && npm run convert",
"bundle": "browserify index.js -o site/bundle.js",
"deploy": "npm run build && npm run bundle && surge site docs.thunder-project.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thunder-project/thunder-docs.git"
},
"browserify": {
"transform": [
"minidocs/transform"
]
},
"keywords": [
"thunder",
"image",
"time-series",
"documentation"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/thunder-project/thunder-docs/issues"
},
"homepage": "https://github.com/thunder-project/thunder-docs#readme",
"dependencies": {
"embed-images": "^1.0.0",
"minidocs": "^4.0.4",
"myopts": "^1.1.0"
}
}