-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 902 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
36
37
{
"name": "@m6web/i18n-lint",
"version": "2.3.2",
"description": "i18n translation files linter",
"main": "lib/index.js",
"author": "m6web",
"license": "MIT",
"bin": {
"i18n-lint": "./lib/index.js"
},
"files": [
"lib/",
"default.config.js"
],
"devDependencies": {
"@m6web/eslint-plugin": "2.0.0",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"jest": "24.1.0"
},
"dependencies": {
"chalk": "2.4.2",
"is-html": "1.1.0",
"lodash": "4.17.21"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "NODE_ENV=prod babel src --out-dir lib",
"format": "prettier-eslint --write src/**/*.js tests/**/*.js",
"prepack": "yarn test && yarn build",
"test": "jest",
"test:integration": "yarn build && node ./lib/index --config tests/test.config.json",
"test:coverage": "jest --coverage"
}
}