-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "@sensorfactdev/i18n",
"version": "3.1.2",
"description": "Internationalisation client for translations managed in GraphQL",
"repository": {
"type": "git",
"url": "[email protected]:Sensorfactdev/i18n.git"
},
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"build": "babel ./src/index.js --out-file ./lib/index.js --presets @babel/preset-env",
"test-travis": "yarn test && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"author": "Ramon Gebben <[email protected]>",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"coveralls": "^3.1.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"jest": "^26.3.0"
},
"dependencies": {
"@formatjs/intl-datetimeformat": "^3.2.7",
"@formatjs/intl-locale": "^2.4.14",
"@formatjs/intl-numberformat": "^6.1.4",
"intl-messageformat": "^9.2.0"
},
"main": "lib/index.js"
}