-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "tagged-translations",
"version": "1.1.6",
"description": "A dead simple babel-plugin for translating texts in React applications",
"author": "Vinh Le <[email protected]>",
"keywords": [
"babel",
"babel-plugin",
"i18n",
"translation",
"tagged-template",
"babel-macros",
"babel-plugin-macros",
"react"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/vinhlh/tagged-translations.git"
},
"bugs": {
"url": "https://github.com/vinhlh/tagged-translations/issues"
},
"homepage": "https://github.com/vinhlh/tagged-translations#readme",
"license": "MIT",
"dependencies": {
"lodash.merge": "^4.6.1"
},
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint src/",
"format": "prettier --write '**/*.js'"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.1",
"babel-plugin-macros": "^2.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"eslint": "^4.15.0",
"eslint-plugin-prettier": "^2.4.0",
"format": "prettier --write 'src/**/*.js'",
"jest": "^22.0.6",
"prettier": "^1.10.2"
},
"jest": {
"testRegex": "tests/.*\\.tests\\.js$",
"setupFiles": [
"<rootDir>/scripts/runTests.js"
],
"collectCoverageFrom": [
"src/**/*.js"
]
}
}