-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.9 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
{
"name": "i18next-service-backend",
"version": "1.0.5",
"description": "Backend layer for i18next using external service.",
"main": "dist/commonjs/index.js",
"jsnext:main": "dist/es/index.js",
"module": "dist/es/index.js",
"keywords": [
"i18next",
"i18next-backend"
],
"homepage": "https://github.com/timbrandin/i18next-service-backend",
"bugs": "https://github.com/timbrandin/i18next-service-backend/issues",
"repository": {
"type": "git",
"url": "git://github.com/timbrandin/i18next-service-backend.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.1",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-0": "6.16.0",
"babelify": "7.3.0",
"browserify": "13.1.1",
"browserify-istanbul": "2.0.0",
"chai": "3.5.0",
"coveralls": "2.11.15",
"eslint": "3.10.2",
"eslint-config-airbnb": "13.0.0",
"i18next": "4.1.0",
"isparta": "4.0.0",
"istanbul": "gotwarlost/istanbul#source-map",
"karma": "1.3.0",
"karma-browserify": "5.1.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage": "douglasduteil/karma-coverage#next",
"karma-coveralls": "1.1.2",
"karma-expect": "1.1.3",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-rollup-preprocessor": "2.0.2",
"karma-sinon": "1.0.5",
"karma-spec-reporter": "0.0.26",
"mkdirp": "0.5.1",
"mocha": "3.1.2",
"phantomjs-prebuilt": "2.1.13",
"rimraf": "2.5.4",
"rollup": "0.36.3",
"rollup-plugin-babel": "2.6.1",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-uglify": "1.0.1",
"sinon": "1.17.6",
"yargs": "6.4.0"
},
"scripts": {
"test": "karma start karma.conf.js --singleRun",
"tdd": "karma start karma.conf.js",
"clean": "rimraf dist && mkdirp dist",
"copy": "cp ./dist/umd/i18nextServiceBackend.min.js ./i18nextServiceBackend.min.js && cp ./dist/umd/i18nextServiceBackend.js ./i18nextServiceBackend.js",
"build:es": "BABEL_ENV=jsnext babel src --out-dir dist/es",
"build:cjs": "babel src --out-dir dist/commonjs",
"build:umd": "rollup -c rollup.config.js --format umd && rollup -c rollup.config.js --format umd --uglify",
"build:amd": "rollup -c rollup.config.js --format amd && rollup -c rollup.config.js --format umd --uglify",
"build:iife": "rollup -c rollup.config.js --format iife && rollup -c rollup.config.js --format iife --uglify",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:umd && npm run copy",
"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)",
"Tim Brandin <[email protected]> (https://github.com/timbrandin)"
],
"license": "MIT"
}