-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "react-input-handler",
"version": "1.0.3",
"description": "Utility function to handle input changes in React.",
"main": "dist/react-input-handler.js",
"module": "dist/react-input-handler.esm.js",
"browser": "dist/react-input-handler.umd.js",
"repository": "[email protected]:rmariuzzo/react-input-handler.git",
"author": "Rubens Mariuzzo <[email protected]>",
"license": "MIT",
"files": [
"LICENSE",
"dist",
"README.md",
"yarn.lock"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollup": "^0.56.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.9"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"test": "jest"
},
"dependencies": {
"lodash.set": "^4.3.2"
}
}