-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 2.12 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
92
93
94
95
{
"name": "itsa-react-docviewer",
"version": "16.0.6",
"description": "React component that views documents using Google Doc Viewer",
"author": [
{
"name": "Marco Asbreuk",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ItsAsbreuk/itsa-react-docviewer"
},
"bugs": {
"url": "https://github.com/ItsAsbreuk/itsa-react-docviewer/issues"
},
"keywords": [
"itsasbreuk",
"itsa",
"react",
"react-component",
"doc",
"viewer",
"docviewer",
"google"
],
"main": "./lib/component.jsx",
"engines": {
"node": ">=5"
},
"directories": {
"css": "./css",
"lib": "./lib"
},
"dependencies": {
"itsa-utils": "^1.4.0",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"chai-equal-jsx": "^1.0.9",
"css-loader": "^0.23.1",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"istanbul": "^0.3.0",
"jsdom": "^7.2.2",
"jsdom-global": "^1.6.1",
"jshint": "^2.5.5",
"mocha": "^1.21.4",
"node-sass": "^3.4.2",
"react": "^15.6.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.6.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"yuidocjs": "^0.9.0"
},
"scripts": {
"pretest": "eslint ./**/*.jsx?",
"test": "mocha 'tests/*.js' --compilers js:babel-core/register",
"lint": "eslint ./**/*.jsx?",
"build": "webpack && yuidoc ./lib -q -c ./yuidoc.json"
},
"maintainers": [
{
"name": "Marco Asbreuk",
"email": "[email protected]"
}
],
"testling": {
"harness": "mocha",
"files": "tests/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"license": "BSD-3-Clause"
}