forked from geoext/geoext3-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.78 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
53
{
"name": "geoext3-ws",
"version": "0.0.1",
"description": "Learn how to use GeoExt3 in your ExtJS applications…",
"private": true,
"engines": {
"node": ">=0.10.46"
},
"scripts": {
"clean": "rimraf src/_book build",
"start": "mkdirp src/_book && parallelshell \"node scripts/sync-exercises.js\" \"npm run doc:serve\"",
"test": "npm run build:html",
"check:calibre": "(which calibre > /dev/null 2>&1) || (echo 'calibre not installed' && false)",
"check:zip": "(which zip > /dev/null 2>&1) || (echo 'zip not installed' && false)",
"doc:help": "gitbook help",
"doc:serve": "gitbook serve src",
"doc:init": "gitbook init src",
"doc:build": "gitbook build src build/geoext3-ws",
"doc:epub": "npm run check:calibre && gitbook epub src build/geoext3-ws.epub",
"doc:pdf": "npm run check:calibre && gitbook pdf src build/geoext3-ws.pdf",
"build:html": "npm run clean && npm run doc:build",
"build:all": "npm run build:html && npm run doc:pdf && npm run doc:epub",
"archive": "npm run check:zip && npm run build:all && cd build && zip -r geoext3-ws.zip geoext3-ws *.epub *.pdf",
"postinstall": "gitbook install src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geoext/geoext3-ws.git"
},
"keywords": [
"extjs",
"openlayers",
"workshop",
"introduction",
"beginner"
],
"author": "GeoExt Contributors",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/geoext/geoext3-ws/issues"
},
"homepage": "https://github.com/geoext/geoext3-ws#readme",
"dependencies": {
"fs-extra": "0.30.0",
"gitbook-cli": "2.3.0",
"mkdirp": "0.5.1",
"parallelshell": "2.0.0",
"readline": "1.3.0",
"rimraf": "2.5.2",
"watch": "0.19.1",
"which": "1.2.10"
}
}