-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 923 Bytes
/
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
{
"name": "jsdoc-codesnippet",
"version": "0.1.5",
"description": "A JSDoc plugin that allow you to include named code snippets in your docblocks descriptions",
"main": "lib/jsdoc-codesnippet.js",
"repository": {
"type": "git",
"url": "https://github.com/Nihilivin/jsdoc-codesnippet.git"
},
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"keywords": [
"jsdoc",
"snippet",
"description",
"plugin"
],
"author": "Alexandre Germain",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Nihilivin/jsdoc-codesnippet/issues"
},
"homepage": "https://github.com/Nihilivin/jsdoc-codesnippet",
"dependencies": {
"js-beautify": "^1.6.2"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-preset-es2015": "^6.6.0",
"babel-runtime": "^5.8.24"
},
"babel": {
"presets": [
"es2015"
]
}
}