forked from innovativeinnovation/ubuntu-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 868 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
{
"name": "ubuntu-setup",
"private": true,
"version": "1.8.1",
"description": "Installing development environment on Ubuntu",
"keywords": [
"Ubuntu",
"Development",
"Install"
],
"author": "William Belle <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/innovativeinnovation/ubuntu-setup.git",
"scripts": {
"build": "npm run lint && npm run prepare && rm -rf src/_book && gitbook build src/",
"deploy": "npm run build && git-directory-deploy --directory src/_book --branch gh-pages",
"lint": "markdownlint -c .mdlrc.json src/",
"prepare": "gitbook install",
"serve": "npm run lint && npm run prepare && gitbook serve src/"
},
"devDependencies": {
"git-directory-deploy": "^1.5.1",
"gitbook-cli": "^2.3.2",
"markdownlint-cli": "^0.13.0"
},
"dependencies": {}
}