-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 930 Bytes
/
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
{
"name": "eslint-plugin-m6web-i18n",
"version": "0.5.1",
"description": "eslint plugin for generic i18n",
"author": "M6web",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/M6Web/eslint-plugin-m6web-i18n.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"babel-watch": "babel src --out-dir lib --watch",
"format": "prettier-eslint --write src/**/*.js",
"lint": "eslint src/**/*.js tests/**/*.js",
"test": "mocha --recursive tests",
"prepack": "yarn lint && yarn test && yarn build"
},
"peerDependencies": {
"eslint": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.9.0",
"eslint-tools-m6web": "1.2.0",
"mocha": "^3.5.3",
"mversion": "^1.10.1",
"sinon": "^3.2.1"
},
"dependencies": {
"minimatch": "3.0.4"
}
}