-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 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
56
57
58
59
60
61
62
63
{
"name": "@opuscapita/i18n",
"version": "1.2.16-SNAPSHOT",
"description": "OpusCapita simple i18n mechanism",
"main": "lib/index.js",
"files": [
"lib",
"bin"
],
"scripts": {
"lint": "eslint src",
"test": "rimraf ./.nyc_output ./coverage && cross-env nyc mocha --recursive src/**/*.spec.js",
"upload-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test-only": "mocha src/**/*.spec.js --require config/mocha-setup.js",
"npm-build": "rimraf lib && babel --copy-files --no-babelrc --presets es2015,stage-0 --plugins lodash --ignore *.spec.js src --out-dir lib",
"npm-publish": "npm run npm-build && npm publish",
"publish-release": "npm run npm-publish"
},
"bin": {
"i18n-js2properties": "bin/i18n-js2properties.js"
},
"homepage": "https://github.com/OpusCapita/i18n.git",
"contributors": [
"Dmitry Divin <dmirty.divin@jcatalog.com>",
"Daniel Zhitomirsky <daniel.zhitomirsky@jcatalog.com>",
"Alexey Sergeev <alexey.sergeev@jcatalog.com>"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": "OpusCapita/i18n",
"license": "Apache-2.0",
"dependencies": {
"bignumber.js": "9.0.0",
"flat": "2.0.1",
"lodash": "4.17.11",
"properties": "1.2.1",
"yargs": "15.0.2"
},
"devDependencies": {
"@opuscapita/npm-scripts": "2.0.0-beta.2",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-istanbul": "4.1.4",
"babel-plugin-lodash": "3.2.11",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.24.1",
"chai": "4.1.0",
"coveralls": "2.13.1",
"cross-env": "5.0.1",
"eslint": "3.10.2",
"eslint-config-opuscapita": "1.0.8",
"eslint-plugin-react": "7.1.0",
"mocha": "3.4.2",
"mocha-junit-reporter": "1.13.0",
"mock-fs": "4.10.4",
"nyc": "11.0.3",
"rimraf": "2.6.1"
}
}