-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
executable file
·96 lines (96 loc) · 2.54 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-recaptcha",
"version": "2.3.11",
"description": "A react.js reCAPTCHA for Google",
"main": "dist/react-recaptcha.js",
"scripts": {
"start": "babel-node example/server.js",
"compile": "webpack -p --config webpack.production.config.js",
"lint": "eslint src example",
"test": "cross-env BABEL_ENV=production jest",
"test:watch": "cross-env BABEL_ENV=production jest --watch",
"prepublish": "cross-env NODE_ENV=production npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/appleboy/react-recaptcha.git"
},
"keywords": [
"react",
"react-component",
"reCAPTCHA",
"component"
],
"pre-commit": [
"lint",
"test"
],
"author": "Bo-Yi Wu",
"license": "BSD",
"bugs": {
"url": "https://github.com/appleboy/react-recaptcha/issues"
},
"homepage": "https://github.com/appleboy/react-recaptcha",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.3.26",
"babel-jest": "^14.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-react": "^3.14.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"jsdom": "^11.6.1",
"lodash": "^4.17.4",
"pre-commit": "^1.1.2",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.5.4",
"react-hot-loader": "^1.3.0",
"react-test-renderer": "^15.6.2",
"react-transform-catch-errors": "^1.0.1",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"sinon": "^4.2.2",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"testPathIgnorePatterns": [
"/.yarn-cache/",
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"/.yarn-cache/",
"/node_modules/"
],
"transformIgnorePatterns": [
"/.yarn-cache/",
"/node_modules/"
]
}
}