This repository has been archived by the owner on Aug 16, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "@verdaccio/local-storage",
"version": "2.3.0",
"description": "local storage implementation",
"main": "lib/index.js",
"scripts": {
"release": "standard-version -a -s",
"test": "jest",
"lint": "npm run type-check && eslint . --ext .js,.ts",
"commitmsg": "commitlint -e $GIT_PARAMS",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src/ --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"prepublish": "npm run build",
"format": "prettier --single-quote --trailing-comma none --write \"{src,test}/**/*.js\"",
"coverage:publish": "codecov"
},
"dependencies": {
"@verdaccio/commons-api": "0.1.2",
"@verdaccio/file-locking": "1.0.4",
"@verdaccio/streams": "2.0.0",
"async": "3.1.0",
"level": "^5.0.1",
"lodash": "4.17.15",
"mkdirp": "0.5.1"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@types/jest": "24.0.17",
"@types/lodash": "4.14.136",
"@types/minimatch": "3.0.3",
"@types/node": "12.7.1",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@verdaccio/babel-preset": "1.0.0",
"@verdaccio/eslint-config": "0.0.1",
"@verdaccio/types": "6.2.0",
"codecov": "3.5.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"husky": "0.14.3",
"jest": "24.8.0",
"minimatch": "3.0.4",
"rmdir-sync": "1.0.1",
"standard-version": "7.0.0",
"typescript": "3.5.3"
},
"keywords": [
"plugin",
"verdaccio",
"local-storage"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=8"
},
"author": "Juan Picado <[email protected]>",
"private": false,
"license": "MIT"
}