-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "jsdoc-test",
"version": "0.0.10",
"description": "Run doc examples as tests",
"main": "dist/index.js",
"scripts": {
"build": "webpack -p",
"test": "mocha --require babel-register",
"test:watch": "npm run test -- --watch",
"lint": "eslint {src,test}/**/*.js webpack.config.js",
"format": "prettier {src,test}/**/*.js webpack.config.js --write",
"precommit": "pretty-quick --staged"
},
"author": "MainShayne233",
"license": "MIT",
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"mocha": "^5.0.4",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"webpack": "^4.1.1",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"jison": "^0.4.18",
"lex": "^1.7.9"
}
}