forked from ctumolosus/jsdoc-babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "jsdoc-babel",
"version": "0.3.0",
"description": "A JSDoc plugin that transforms ES6 source files with Babel before they are processsed.",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"prebuild": "npm run test",
"prepublish": "npm run build",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-core/register --recursive --require test/setup.js test/specs"
},
"repository": {
"type": "git",
"url": "https://github.com/ctumolosus/jsdoc-babel"
},
"keywords": [
"jsdoc",
"babel",
"plugin"
],
"author": "Christian Munoz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ctumolosus/jsdoc-babel/issues"
},
"homepage": "https://github.com/ctumolosus/jsdoc-babel",
"dependencies": {
"lodash": "^4.13.1"
},
"peerDependencies": {
"babel-core": ">6.0.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-2": "6.18.0",
"chai": "3.5.0",
"eslint": "3.13.1",
"eslint-config-airbnb": "14.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"mocha": "3.2.0",
"sinon": "1.17.7",
"sinon-chai": "2.8.0"
}
}