-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 983 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 983 Bytes
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": "@kfed/eslint-plugin-i18n",
"version": "0.0.8",
"description": "Plugin for eslint, that should reduce (for me) monkey job on implementing i18n for Contentmart",
"repository": "https://github.com/Kyr/eslint-plugin-i18n",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "NODE_ENV=test npm run unit-test",
"unit-test": "NODE_ENV=test istanbul cover --dir __reports__/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter dot",
"publish": "npm publish --access=public"
},
"author": "Kyrylo F. Fedorov",
"license": "MIT",
"devDependencies": {
"babel-eslint": "8.2.x",
"eslint": "5.5.x",
"istanbul": "0.4.5",
"mocha": "5.2.x"
},
"peerDependencies": {
"eslint": "^5.0.0"
},
"engines": {
"node": ">=6"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"i18n",
"contentmart",
"cmi"
],
"dependencies": {
"uuid": "3.3.x"
}
}