-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
41
42
43
44
45
46
{
"name": "find-anagrams",
"version": "1.1.0",
"description": "This package will find all anagrams from an array and group them together in an matrix array",
"main": "index.js",
"dependencies": {
"is-anagram": "^1.0.3"
},
"devDependencies": {
"ava": "^0.23.0",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2"
},
"scripts": {
"test": "ava",
"test-watch": "ava --watch",
"prepublish": "npm test",
"prettier": "prettier --config .prettierrc --write '*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add"
]
},
"keywords": [
"word",
"words",
"anagram",
"anagrams",
"find",
"find-anagrams"
],
"repository": {
"type": "git",
"url": "https://github.com/bjarneo/find-anagrams.git"
},
"homepage": "https://github.com/bjarneo/find-anagrams",
"bugs": {
"url": "https://github.com/bjarneo/find-anagrams/issues"
},
"author": "Bjarne Oeverli",
"license": "MIT"
}