This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"name": "esdoc-hacker-vision",
"description": "Hacker vision frontend plugin for esdoc",
"main": "lib/Plugin.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "gulp",
"prepublish": "gulp prepublish",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/superleap/esdoc-hacker-vision.git"
},
"keywords": [
"esdoc",
"plugin",
"hacker",
"vision"
],
"author": "TED Vortex <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/superleap/esdoc-hacker-vision/issues"
},
"homepage": "https://github.com/superleap/esdoc-hacker-vision#readme",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-block-scoping": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"bithound": "^1.4.0",
"bluebird": "^3.4.1",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^3.1.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-load-plugins": "^1.2.4",
"gulp-nsp": "^2.4.2",
"read-package-json": "^2.0.4",
"semantic-release": "^6.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports",
"transform-es2015-block-scoping"
]
}
}