-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
66 lines (66 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "docson",
"version": "2.1.0",
"description": "Documentation for your JSON types",
"main": "lib/index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"bin": "./lib/docson-cli.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && npm run build-lib && npm run build-widget",
"build-widget": "webpack",
"build-lib": "babel src -d lib",
"clean": "rm -fr lib"
},
"repository": {
"type": "git",
"url": "https://github.com/lbovet/docson"
},
"keywords": [
"json",
"schema",
"documentation"
],
"browserify": {
"transform": [
"brfs"
]
},
"author": "Laurent Bovet",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lbovet/docson/issues"
},
"homepage": "https://github.com/lbovet/docson#readme",
"devDependencies": {
"@babel/preset-env": "^7.0.0-beta.54",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"jest": "^23.2.0",
"jest-environment-jsdom": "^23.4.0",
"puppeteer": "^1.5.0",
"webpack": "^3.11.0"
},
"dependencies": {
"commander": "^2.15.1",
"debug": "^3.1.0",
"express": "^4.16.3",
"handlebars": "^4.0.11",
"jquery": "^2.2.4",
"jsonpointer": "^4.0.1",
"jsonpointer.js": "^0.4.0",
"lodash": "^4.17.10",
"marked": "^0.3.14",
"serve-index": "^1.9.1",
"traverse": "^0.6.6",
"urijs": "^1.19.1"
}
}