-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.97 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": "react-utils-button",
"version": "1.3.1",
"description": "Lightweight React Button component, serving as a reusable utility wrapper over the HTML button element.",
"author": "Raul Rene Lepsa <raul.lepsa@gmail.com> (https://github.com/raulrene)",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "webpack -d",
"lint": "esw webpack.config.* src --color",
"test": "webpack --config webpack.spec.config.js --hide-modules; node_modules/.bin/mocha --require jsdom-global/register dist/index.spec.js && rm dist/index.spec.js"
},
"keywords": [
"react-utils-button",
"react-utils",
"react",
"reusable",
"button",
"react-utils-bundle",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/raulrene/react-utils-button"
},
"dependencies": {
"prop-types": "^15.5.7"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"chai-enzyme": "^0.8.0",
"clean-webpack-plugin": "^0.1.17",
"enzyme": "2.8.0",
"eslint": "^5.14.1",
"eslint-config-google": "^0.12.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-inferno": "^7.11.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-require-jsdoc-except": "^1.3.0",
"eslint-watch": "^4.0.2",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"react": "^15.6.1",
"react-addons-test-utils": "^15.4.0",
"react-dom": "^15.0.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"webpack": "^2.4.1"
}
}