-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
74 lines (74 loc) · 2.3 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
{
"name": "i18next-xhr-backend",
"version": "3.2.2",
"description": "backend layer for i18next using browsers xhr",
"main": "./dist/cjs/i18nextXHRBackend.js",
"module": "./dist/esm/i18nextXHRBackend.js",
"types": "./index.d.ts",
"keywords": [
"i18next",
"i18next-backend"
],
"homepage": "https://github.com/i18next/i18next-xhr-backend",
"bugs": "https://github.com/i18next/i18next-xhr-backend/issues",
"repository": {
"type": "git",
"url": "https://github.com/i18next/i18next-xhr-backend"
},
"dependencies": {
"@babel/runtime": "^7.5.5"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-polyfill": "^6.26.0",
"babelify": "^10.0.0",
"browserify": "16.3.0",
"browserify-istanbul": "3.0.1",
"chai": "4.2.0",
"coveralls": "3.0.5",
"cpy-cli": "^2.0.0",
"dtslint": "^0.9.0",
"eslint": "6.1.0",
"eslint-config-airbnb": "17.1.1",
"i18next": "^19.0.0",
"istanbul": "gotwarlost/istanbul#source-map",
"json5": "2.1.0",
"karma": "4.2.0",
"karma-browserify": "6.1.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.0.0",
"karma-cli": "2.0.0",
"karma-coverage": "douglasduteil/karma-coverage#next",
"karma-coveralls": "2.1.0",
"karma-expect": "1.1.3",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon": "1.0.5",
"karma-spec-reporter": "0.0.32",
"mocha": "6.2.0",
"phantomjs-prebuilt": "2.1.16",
"rimraf": "2.6.3",
"rollup": "^1.18.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"sinon": "7.3.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"scripts": {
"pretest": "npm run test:typescript",
"test": "karma start karma.conf.js --singleRun",
"test:typescript": "tslint --project tsconfig.json",
"tdd": "karma start karma.conf.js",
"build": "rimraf dist && rollup -c && cpy \"./dist/umd/*.js\" ./",
"preversion": "npm run test && npm run build && git push",
"postversion": "git push && git push --tags"
},
"author": "Jan Mühlemann <[email protected]> (https://github.com/jamuhl)",
"license": "MIT",
"lock": false
}