-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.07 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
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@opuscapita/react-i18n",
"version": "2.0.2-SNAPSHOT",
"description": "OpusCapita React I18n Extension",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint src",
"test": "rimraf ./.nyc_output ./coverage && nyc mocha --recursive src/**/*.spec.js",
"start": "nodemon --watch src/server src/server/demo/index",
"npm-build": "rimraf lib && babel --copy-files --no-babelrc --presets es2015,stage-0,react --plugins transform-decorators-legacy --ignore *.spec.js,*/demo/** src/client --out-dir lib",
"npm-publish": "npm run npm-build && npm publish",
"publish-release": "npm run npm-publish",
"upload-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"contributors": [
"Dmitry Divin <[email protected]>",
"Alexey Sergeev <[email protected]>",
"Kirill Volkovich <[email protected]>"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": "OpusCapita/react-i18n",
"license": "Apache-2.0",
"readme": "README.md",
"dependencies": {
"@opuscapita/i18n": "1.2.10",
"prop-types": "15.6.0"
},
"peerDependencies": {
"react": "^15.6.2 || ^16.2.0",
"react-dom": "^15.6.2 || ^16.2.0"
},
"devDependencies": {
"@opuscapita/npm-scripts": "2.0.1-beta.1",
"@opuscapita/react-showroom-client": "1.3.0-beta.6",
"@opuscapita/react-showroom-server": "1.3.0",
"@opuscapita/styles": "1.1.15",
"babel-cli": "6.18.0",
"babel-core": "6.20.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-plugin-istanbul": "2.0.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"babel-register": "6.18.0",
"chai": "4.1.2",
"coveralls": "2.13.1",
"css-loader": "0.26.1",
"enzyme": "3.2.0",
"enzyme-adapter-react-15": "1.0.5",
"eslint": "3.17.0",
"eslint-config-opuscapita": "1.0.9",
"eslint-plugin-react": "6.10.0",
"express": "4.16.2",
"file-loader": "0.9.0",
"jsdom": "9.9.1",
"json-loader": "0.5.4",
"less": "2.7.1",
"less-loader": "2.2.3",
"mocha": "3.4.2",
"mocha-junit-reporter": "1.15.0",
"nodemon": "1.12.5",
"nyc": "11.3.0",
"postcss-loader": "1.2.1",
"raw-loader": "0.5.1",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-test-renderer": "15.6.2",
"rimraf": "2.5.4",
"source-map-loader": "0.1.5",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-dev-middleware": "1.9.0"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"reporter": [
"lcov",
"text"
],
"require": "./config/mocha-setup.js",
"include": [
"src/client/**/*.js"
],
"exclude": [
"**/*.spec.js",
"**/*.SCOPE*.js",
"**/demo/**/*.js"
],
"check-coverage": true,
"all": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
}
}