This repository has been archived by the owner on Aug 1, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "verdaccio-audit",
"version": "1.2.1",
"description": "verdaccio middleware plugin to bypass npmjs audit",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/verdaccio/verdaccio-audit"
},
"scripts": {
"lint": "eslint . --ext .js,.ts",
"test": "npm run lint && jest",
"prepublish": "npm run build",
"coverage:publish": "codecov",
"commitmsg": "commitlint -e $GIT_PARAMS",
"release": "standard-version -a -s",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src/ --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build": "npm run build:types && npm run build:js"
},
"keywords": [
"verdaccio",
"plugin",
"middleware",
"audit"
],
"author": "Juan Picado <juanpicado19@gmail.com>",
"license": "MIT",
"dependencies": {
"express": "4.16.4",
"request": "2.88.0"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@commitlint/travis-cli": "7.5.2",
"@types/express": "4.16.1",
"@types/http-errors": "1.6.1",
"@types/jest": "24.0.15",
"@types/memory-fs": "0.3.2",
"@types/node": "12.6.8",
"@types/request": "2.48.2",
"@verdaccio/babel-preset": "1.0.0",
"@verdaccio/eslint-config": "0.0.1",
"@verdaccio/types": "7.0.0",
"codecov": "3.5.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"husky": "0.14.3",
"jest": "24.8.0",
"rmdir-sync": "1.0.1",
"standard-version": "6.0.1",
"typescript": "3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "commitlint -e $GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=8"
}
}