-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "react-portalgun",
"version": "1.0.0",
"description": "React modals made easy",
"main": "dist/react-portalgun.js",
"module": "dist/react-portalgun.es6.js",
"repository": "https://github.com/diegomura/react-portalgun",
"author": "Diego Muracciole <diegomuracciole@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"precommit": "lint-staged",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c",
"prepublish": "npm run build",
"test": "jest --config ./jest.config.js"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollup": "^0.55.3",
"rollup-plugin-commonjs": "8.1.0",
"rollup-plugin-filesize": "1.4.2",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-replace": "1.1.1",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0"
},
"dependencies": {
"warning": "^3.0.0"
}
}