-
Notifications
You must be signed in to change notification settings - Fork 640
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "engineer-manager",
"version": "1.0.0",
"description": "A list of resources for engineering managers (Books, Videos, Podcasts, Articles)",
"main": "index.js",
"scripts": {
"test": "gulp test",
"build": "node index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanburgess/engineer-manager.git"
},
"keywords": [
"managers",
"engineering",
"engineers",
"resources",
"links",
"learning"
],
"author": "Ryan Burgess",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanburgess/engineer-manager/issues"
},
"config": {
"ghooks": {
"pre-commit": "",
"pre-push": "node index",
"post-merge": "npm install",
"post-rewrite": "npm install"
}
},
"homepage": "https://github.com/ryanburgess/engineer-manager#readme",
"devDependencies": {
"ghooks": "^1.3.2",
"gulp": "^4.0.2",
"gulp-jsonlint": "^1.3.2",
"jshint-stylish": "^2.2.1",
"node-sass": "^6.0.1",
"prompt": "^1.1.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}