forked from Brightspace/react-valence-ui-iframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "react-valence-ui-iframe",
"version": "2.0.0",
"description": "An iframe wrapper which provides callbacks for when the iframe has loaded and callbacks providing the size of the iframe's contents if we can figure them out",
"main": "src/react-valence-ui-iframe.js",
"scripts": {
"report-coverage": "lcov-result-merger 'coverage/**/lcov.info' | ./node_modules/coveralls/bin/coveralls.js",
"pretest:unit": "rimraf node_modules/karma-coverage/node_modules/istanbul",
"test:unit": "karma start karma.conf.js --single-run",
"lint": "eslint src",
"test": "npm run lint && npm run test:unit"
},
"keywords": [
"iframe",
"valence",
"react"
],
"author": "D2L",
"license": "Apache-2.0",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-plugin-rewire": "^1.0.0-rc-3",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^11.1.0",
"browserify-istanbul": "^0.2.1",
"coveralls": "^2.11.4",
"eslint": "^1.5.1",
"eslint-config-brightspace": "^0.0.2",
"eslint-plugin-react": "^3.15.0",
"istanbul": "gotwarlost/istanbul#source-map",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-cli": "^0.1.0",
"karma-coverage": "^0.5.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"lcov-result-merger": "^1.0.2",
"mkdirp": "^0.5.1",
"phantomjs": "^1.9.18",
"phantomjs-polyfill": "0.0.1",
"react-addons-test-utils": "^15.3.2",
"rimraf": "^2.4.3",
"sinon": "^1.17.2",
"sinon-as-promised": "^4.0.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}