forked from openlayers/workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 988 Bytes
/
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
{
"name": "openlayers-workshop",
"version": "6.0.0-beta.en.3",
"description": "OpenLayers workshop",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/openlayers/workshop.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/openlayers/workshop/issues"
},
"homepage": "https://github.com/openlayers/workshop#readme",
"scripts": {
"start": "mkdirp doc/_book && npm run doc:serve",
"test": "npm run doc:build",
"clean": "rm -rf doc/_book build openlayers-workshop-*.zip",
"postinstall": "gitbook update && gitbook install doc",
"doc:serve": "gitbook serve doc",
"doc:build": "gitbook build doc build/openlayers-workshop",
"build": "npm run clean && npm run doc:build",
"archive:en": "./archive.sh en",
"deploy": "npm run build && gh-pages --dist build/openlayers-workshop"
},
"devDependencies": {
"gh-pages": "2.0.1",
"gitbook-cli": "2.3.2",
"mkdirp": "0.5.1"
}
}