-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "jsdoc-babel",
"version": "0.5.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",
"clean": "rimraf lib",
"lint": "eslint .",
"prepare": "npm-run-all clean build",
"prepublishOnly": "npm-run-all clean lint test build",
"test": "mocha --recursive --require @babel/register --require test/setup.js test/specs",
"test:watch": "npm run test -- --watch"
},
"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": {
"jsdoc-regex": "^1.0.1",
"lodash": "^4.17.20"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0"
}
}