-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1000 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
{
"name": "only-one",
"version": "1.2.0",
"description": "CLI tool for checking you have one version of a dependency in node_modules",
"bin": "index.js",
"scripts": {
"test": "eslint .",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/DomainGroupOSS/only-one.git"
},
"author": "Albert Still <albertjamesstill@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/DomainGroupOSS/only-one/issues"
},
"homepage": "https://github.com/DomainGroupOSS/only-one#readme",
"dependencies": {
"chalk": "^3.0.0",
"fast-glob": "^2.2.7",
"meow": "^6.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "1.19.1"
},
"engines": {
"node": ">=6.16.0"
}
}