-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
91 lines (91 loc) · 2.48 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
{
"name": "rc-print",
"version": "1.0.4",
"description": "Create a iframe or new window to print easily",
"repository": {
"type": "git",
"url": "https://github.com/hanzhangyu/rc-print"
},
"homepage": "https://github.com/hanzhangyu/rc-print",
"keywords": [
"print",
"react",
"iframe"
],
"author": "paulhan <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha",
"build": "rimraf lib && babel src --out-dir lib && npm run demo",
"demo": "webpack",
"dev": "webpack --watch",
"prepublish": "npm run build",
"start": "webpack-dev-server --watch",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"babel-runtime": "^6.11.6"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.3.15",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^6.2.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-class-properties": "*",
"babel-plugin-transform-es3-member-expression-literals": "*",
"babel-plugin-transform-es3-property-literals": "*",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"css-loader": "~0.16.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-react": "^6.9.0",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "~0.8.4",
"jsdom": "^9.6.0",
"jsx-loader": "~0.13.2",
"mocha": "^3.0.2",
"nyc": "^11.1.0",
"prop-types": "^15.0.0",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.5.4",
"style-loader": "~0.12.3",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "1.12.1"
},
"peerDependencies": {
"react": ">=0.13.2 || ^0.14 || ^15.0.0 || >=16.0.0-alpha.1 <17.0.0",
"prop-types": ">=15.0.0"
},
"files": [
"lib",
"src"
],
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register",
"./test/.setup.js"
],
"sourceMap": false,
"instrument": false
}
}