-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "react-electron-web-view",
"version": "2.0.1",
"description": "Electron WebView",
"main": "lib/ElectronWebView.js",
"author": "Samuel Attard",
"homepage": "https://github.com/MarshallOfSound/react-electron-web-view",
"repository": {
"type": "git",
"url": "https://github.com/MarshallOfSound/react-electron-web-view.git"
},
"bugs": {
"url": "https://github.com/MarshallOfSound/react-electron-web-view/issues"
},
"dependencies": {
"lodash.camelcase": "^4.3.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^4.1.3",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"electron": "^1.4.4",
"electron-mocha": "^3.1.1",
"enzyme": "^2.5.1",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.3.0",
"gulp": "^3.9.0",
"gulp-rimraf": "^0.2.0",
"gulp-util": "^3.0.7",
"react": "^15.0.0",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.0.0",
"vinyl-source-stream": "^1.1.0"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"scripts": {
"build": "gulp clean && gulp build",
"lint": "exit 0",
"mocha": "electron-mocha test/*_spec.js --renderer --compilers js:babel-core/register --timeout=10000",
"pretest": "npm run build",
"test": "npm run lint && npm run mocha",
"watch": "gulp watch"
},
"keywords": [
"react",
"react-component"
]
}