-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "i18next-redux-saga",
"version": "1.1.0",
"description": "i18next binding to redux using saga",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"build": "webpack -p",
"build:dev": "webpack",
"start": "webpack --watch",
"lint": "tslint -e **/node_modules/** -e **/lib/** -t codeFrame **/*.ts ",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexiusp/i18next-redux-saga.git"
},
"keywords": [
"i18next",
"redux",
"saga"
],
"author": "Aleksei Podgaev",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexiusp/i18next-redux-saga/issues"
},
"homepage": "https://github.com/alexiusp/i18next-redux-saga#readme",
"dependencies": {},
"devDependencies": {
"@types/i18next": "^12.1.0",
"@types/jest": "^22.1.3",
"@types/node": "^9.4.6",
"@types/webpack": "^3.8.8",
"awesome-typescript-loader": "^3.5.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"i18next": "^17.0.3",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"source-map-loader": "^0.2.3",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"webpack": "^3.11.0"
}
}