-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1 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
{
"name": "dedubcheck",
"version": "0.0.6",
"description": "De-Duplicate Dependency Checker for Node.js monorepos",
"author": "Innovatrics UI Team <[email protected]>",
"main": "bin/index.js",
"license": "MIT",
"repository": "https://github.com/innovatrics/dedubcheck",
"bin": {
"dedubcheck": "bin/dedubcheck.js"
},
"files": [
"bin"
],
"keywords": [
"nodejs",
"javascript",
"nodejs-modules",
"duplicates",
"duplicity",
"deduplication"
],
"scripts": {
"lint": "eslint 'bin/*.js' --max-warnings 0 || exit 0",
"prettier:check": "prettier -l 'bin/*.js'",
"test": "yarn run prettier:check && yarn run lint"
},
"dependencies": {
"lodash": "*"
},
"devDependencies": {
"@innovatrics/eslint-config-innovatrics-base": "^13.1.0-build.3",
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"prettier": "^1.15.2"
}
}