forked from i18next/jquery-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.96 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
{
"name": "jquery-i18next",
"version": "1.2.1",
"description": "i18next plugin for jquery usage",
"main": "index.js",
"jsnext:main": "dist/es/index.js",
"keywords": [
"i18next",
"internationalization",
"i18n",
"translation",
"localization",
"l10n",
"globalization",
"jquery",
"jquery-plugin"
],
"homepage": "https://github.com/i18next/jquery-i18next",
"bugs": "https://github.com/i18next/jquery-i18next/issues",
"repository": {
"type": "git",
"url": "https://github.com/i18next/jquery-i18next.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.13.2",
"babel-eslint": "6.1.2",
"babel-preset-es2015": "6.13.2",
"babel-preset-stage-0": "6.5.0",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"mkdirp": "0.5.1",
"rimraf": "2.5.4",
"rollup": "0.34.10",
"rollup-plugin-babel": "2.6.1",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-uglify": "1.0.1",
"yargs": "5.0.0"
},
"scripts": {
"clean": "rimraf dist && mkdirp dist",
"copy": "cp ./dist/umd/jquery-i18next.min.js ./jquery-i18next.min.js && cp ./dist/umd/jquery-i18next.js ./jquery-i18next.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 build && git push",
"postversion": "git push && git push --tags"
},
"author": "Jan Mühlemann <[email protected]> (https://github.com/jamuhl)",
"license": "MIT"
}