forked from jsardev/reaptcha
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@panalbish/reaptcha-enterprise-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"lib",
"example"
],
"scripts": {
"build": "NODE_ENV=production lerna run build",
"flow": "flow",
"lint": "eslint .",
"test": "ava --verbose 'lib/**/*.test.js'",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"release": "npm run build && lerna publish"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"ava": "^1.0.0-beta.8",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^1.0.0",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^3.0.2",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.11.2",
"eslint": "^5.0.0",
"eslint-plugin-flowtype": "3.6.0",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "0.96.0",
"html-webpack-plugin": "^3.2.0",
"husky": "1.3.0",
"jsdom": "15.0.0",
"jsdom-global": "^3.0.2",
"lerna": "^3.2.1",
"nyc": "^13.2.0",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"react-hot-loader": "^4.3.0",
"sinon": "^7.2.4",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7",
"webpack-merge": "^4.1.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"ava": {
"powerAssert": false,
"require": [
"@babel/register"
],
"babel": {
"testOptions": {
"configFile": "./babel.config.js"
}
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}