forked from linterhub/registry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.08 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
{
"author": "linterhub <[email protected]>",
"name": "@linterhub/registry",
"version": "0.0.0-development",
"description": "Registry provides an interface for obtaining information about `packages` from various `package managers`",
"license": "MIT",
"keywords": [
"linterhub"
],
"repository": "https://github.com/linterhub/registry",
"bugs": "https://github.com/linterhub/registry/issues",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
},
"scripts": {
"build": "tsc -p .",
"test": "npm run build & ./node_modules/mocha/bin/mocha --recursive"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.5",
"@types/package-json": "^4.0.1",
"ts-node": "^7.0.0",
"typings": "^2.1.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"mocha": "^5.2.0",
"chai": "^4.1.2"
},
"dependencies": {
"package-json": "^5.0.0",
"request": "^2.87.0",
"request-promise": "^4.2.2"
}
}