-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "react-easy-print",
"description": "Powerful react component for easy printing",
"main": "lib/umd",
"module": "lib/es",
"files": [
"lib",
"src",
"index.d.ts"
],
"sideEffects": false,
"scripts": {
"prebuild": "npm i && rm -rf lib",
"build": "npm run build:es && npm run build:umd",
"build:es": "NODE_ENV=es-production babel src -d lib/es -s --minified --compact",
"build:umd": "NODE_ENV=umd-production rollup -c",
"preversion": "npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"repository": "[email protected]:a-x-/react-easy-print.git",
"author": "Alex Mextner <[email protected]>",
"version": "0.6.0",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-import-css": "^0.1.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.2.0",
"eslint-plugin-react": "^7.1.0",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-size-snapshot": "^0.5.1",
"rollup-plugin-terser": "^1.0.1"
},
"dependencies": {
"load-styles": "^2.0.0",
"set-value": "^2.0.1"
},
"peerDependencies": {
"react": "15.x.x || 16.x.x",
"react-dom": "15.x.x || >=16.4.2",
"prop-types": "15.x.x || 16.x.x"
},
"engines": {
"node": ">=8.0"
}
}