-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
49
50
51
52
53
{
"name": "momino",
"version": "0.1.1",
"description": "Monitors the health of your project's dependencies",
"main": "dist/index.js",
"keywords": ["dependency", "package analyzer", "repository analyzer", "dependency evaluator", "package score", "package health", "community analyzer"],
"bin": {
"momino": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/daniele-rapagnani/momino.git"
},
"scripts": {
"build": "rimraf dist && babel src --out-dir dist && chmod +x dist/index.js",
"test": "eslint index.js src/"
},
"directories": {
"lib": "./dist"
},
"author": "Daniele Rapagnani",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.4.0",
"camelcase": "^4.1.0",
"chalk": "^1.1.3",
"data-store": "^1.0.0",
"eventemitter2": "^4.1.0",
"github": "^9.2.0",
"glob": "^7.1.1",
"humanize-duration": "^3.10.0",
"inquirer": "^3.0.6",
"lodash": "^4.17.4",
"moment": "^2.19.3",
"mustache": "^2.3.0",
"numeral": "^2.0.6",
"ora": "^1.2.0",
"p-queue": "^1.0.0",
"pluralize": "^5.0.0",
"regression": "^1.4.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"winston": "^2.3.1",
"yargs": "^8.0.0"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"eslint": "^3.15.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1"
}
}