forked from bretkikehara/react-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 KB
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
{
"name": "@coverhound/react-i18n",
"version": "1.7.3",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"release": "gulp clean && gulp build && gulp dist",
"build": "gulp build",
"postpublish": "gulp postpublish",
"examples": "gulp examples",
"test": "npm run examples && npm run test:unit && npm run test:e2e",
"test:unit": "gulp test:unit",
"test:e2e": "gulp test:e2e",
"lint": "gulp lint",
"selenium": "selenium-standalone start",
"selenium:install": "selenium-standalone install"
},
"author": "Bret K. Ikehara <bret.k.ikehara@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0"
},
"dependencies": {
"create-react-class": "^15.6.3",
"fbemitter": "^2.1.1",
"prop-types": "^15.6.0"
},
"optionalDependencies": {
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"@coverhound/eslint-config-coverhound": "^1.4.0",
"babel-cli": "^6.9.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.11.1",
"browser-sync": "^2.16.0",
"del": "^2.2.2",
"eslint": "^3.7.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-git": "^1.12.0",
"gulp-load-plugins": "^1.3.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.9",
"gulp-webdriver": "^2.0.2",
"gulp-webpack": "^1.5.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"ngrok": "^2.2.3",
"react": "^0.14.7 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0",
"wdio-jasmine-framework": "^0.2.6",
"wdio-phantomjs-service": "^0.1.0",
"wdio-sauce-service": "^0.2.5",
"wdio-selenium-standalone-service": "0.0.7",
"webdriverio": "^4.2.16"
}
}