-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
48 lines (48 loc) · 1.01 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
47
48
{
"name": "javascript-patterns",
"version": "0.0.1",
"description": "A collection of javascript algorithms, patterns, and techniques",
"main": "index.js",
"scripts": {
"lint": "eslint \"src/**\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nas5w/javascript-patterns.git"
},
"keywords": [
"javascript",
"algorithms",
"techniques",
"patterns"
],
"author": "Nick Scialli",
"license": "MIT",
"bugs": {
"url": "https://github.com/nas5w/javascript-patterns/issues"
},
"homepage": "https://github.com/nas5w/javascript-patterns#readme",
"dependencies": {
"husky": "^1.3.1",
"jest": "^24.7.1"
},
"devDependencies": {
"eslint": "^5.16.0"
},
"resolutions": {
"**/**/set-value": "^2.0.1"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
},
"husky": {
"hooks": {
"pre-push": "npm run lint & npm run test"
}
}
}