-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.23 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.23 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
{
"name": "evas-php.com",
"version": "0.0.1",
"description": "Documentation of the Evas PHP framework",
"main": "index.js",
"author": {
"name": "Egor Vasyakin",
"email": "egor@evas-php.com",
"url" : "https://github.com/evasyakin"
},
"repository": "https://github.com/evas-php/evas-php.com",
"scripts": {
"global:dev": "vuepress dev docs/_global",
"base:dev": "vuepress dev docs/base",
"db:dev": "vuepress dev docs/db",
"http:dev": "vuepress dev docs/http",
"orm:dev": "vuepress dev docs/orm",
"router:dev": "vuepress dev docs/router",
"validate:dev": "vuepress dev docs/validate",
"global:build": "vuepress build docs/_global --dest=./builds/_global",
"base:build": "vuepress build docs/base --dest=./builds/base",
"db:build": "vuepress build docs/db --dest=./builds/db",
"http:build": "vuepress build docs/http --dest=./builds/http",
"orm:build": "vuepress build docs/orm --dest=./builds/orm",
"router:build": "vuepress build docs/router --dest=./builds/router",
"validate:build": "vuepress build docs/validate --dest=./builds/validate"
},
"license": "MIT",
"devDependencies": {
"@vuepress/plugin-search": "^2.0.0-beta.49",
"vuepress": "^2.0.0-beta.49"
}
}