-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "webext-i18n",
"version": "1.1.0",
"description": "Package for simplifying work with i18n in WebExtensions",
"main": "index.js",
"scripts": {
"prepublish": "npm run lint && npm test",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && codecov",
"lint": "eslint index.js tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivantsov/webext-i18n.git"
},
"keywords": [
"webextension",
"extension",
"webext",
"i18n",
"internalization",
"localization",
"chrome",
"firefox"
],
"author": "Alexander Ivantsov <alexivantsov@ya.ru> (https://github.com/ivantsov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivantsov/webext-i18n/issues"
},
"homepage": "https://github.com/ivantsov/webext-i18n#readme",
"dependencies": {
"fs-extra": "^1.0.0"
},
"devDependencies": {
"codecov": "^1.0.1",
"eslint": "^3.11.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^17.0.3"
},
"jest": {
"testRegex": "tests/.*.js$",
"testPathIgnorePatterns": [
"fixtures"
],
"resetMocks": true,
"resetModules": true
}
}