forked from SoftwareBrothers/better-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.88 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
67
68
69
70
{
"name": "better-docs",
"version": "2.7.2",
"description": "JSdoc theme",
"repository": "github:SoftwareBrothers/better-docs",
"main": "publish.js",
"scripts": {
"gulp": "./node_modules/.bin/gulp",
"test": "mocha --recursive './*spec.js' './typescript/*spec.js'",
"build": "babel src --out-dir lib",
"docs": "jsdoc -c jsdoc.json",
"release": "semantic-release"
},
"author": "Wojciech Krysiak",
"license": "MIT",
"dependencies": {
"brace": "^0.11.1",
"react-ace": "^9.5.0",
"react-docgen": "^5.4.0",
"react-frame-component": "^5.2.1",
"typescript": "^4.5.4",
"underscore": "^1.13.2",
"vue-docgen-api": "^3.26.0",
"vue2-ace-editor": "^0.0.15"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/git": "^10.0.1",
"@vue/component-compiler-utils": "^3.3.0",
"browser-sync": "^2.27.7",
"bulma": "^0.9.3",
"chai": "^4.3.4",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-vue": "^8.3.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-uglify": "^3.0.2",
"husky": "^7.0.4",
"jsdoc": "^3.6.7",
"mocha": "^9.1.4",
"sass": "^1.48.0",
"semantic-release": "^18.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">=12"
}
}