-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "similars",
"description": "Find similar objects and partial duplicates in collections",
"license": "ISC",
"author": "Buster Collings <busterc@gmail.com> (https://about.me/buster)",
"repository": "busterc/similars",
"version": "1.0.0",
"main": "lib/index.js",
"files": ["lib"],
"scripts": {
"precommit": "lint-staged",
"prepublish": "nsp check",
"pretest": "eslint .",
"test": "jest --coverage"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"lint-staged": "^7.0.0",
"nsp": "^3.2.1",
"prettier": "^1.7.0",
"prettier-package-json": "^1.5.1"
},
"keywords": ["dupes", "duplicate", "duplicates", "similar", "similars"],
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": ["prettier", "json"]
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"],
"package.json": ["prettier-package-json --write", "git add"]
}
}