-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "jsdocs",
"private": true,
"devDependencies": {
"cz-lerna-changelog": "^2.0.2",
"http-server": "^0.11.1",
"lerna": "^3.0.0-rc.0"
},
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve:playground": "lerna run --scope playground-ui serve --stream",
"serve:content": "./node_modules/.bin/http-server assets -p 9000 --cors=Authorization",
"serve:jsontoui": "lerna run --scope jsontoui dev --stream"
},
"repository": {
"type": "git",
"url": "https://github.com/ajainvivek/jsdocs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ajainvivek/jsdocs/issues"
},
"homepage": "https://github.com/ajainvivek/jsdocs#README",
"description": "Interactive documentations for UI library and plugins",
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"dependencies": {
"vue-codemirror": "^4.0.6"
}
}