-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "frontend-resources",
"version": "1.0.0",
"description": "Collection of frontend resources",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"gitbook-cli": "^2.3.0"
},
"devDependencies": {
"gh-pages": "^0.12.0",
"gitbook-cli": "^2.3.0"
},
"scripts": {
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build",
"docs:publish": "npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push git@github.com:jesperorb/frontend-resources.git gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesperorb/frontend-resources.git"
},
"keywords": [
"frontend",
"html",
"js",
"css"
],
"author": "Jesper Orb",
"license": "ISC",
"bugs": {
"url": "https://github.com/jesperorb/frontend-resources/issues"
}
}