This repository has been archived by the owner on Aug 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.85 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-memory",
"version": "2.0.0",
"description": "storage implementation in memory",
"main": "lib/index.js",
"scripts": {
"release": "standard-version -a -s",
"pretest": "npm run lint",
"test": "jest",
"precommit": "lint-staged",
"format": "prettier --single-quote --trailing-comma none --write \"{src,test}/**/*.ts\"",
"lint": "eslint . --ext .js,.ts",
"coverage": "codecov",
"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"
},
"dependencies": {
"@verdaccio/streams": "2.0.0",
"http-errors": "1.7.2",
"memory-fs": "0.4.1"
},
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@commitlint/travis-cli": "7.5.2",
"@types/http-errors": "1.6.1",
"@types/jest": "24.0.11",
"@types/memory-fs": "0.3.2",
"@types/node": "11.13.8",
"@verdaccio/babel-preset": "0.1.0",
"@verdaccio/eslint-config": "0.0.1",
"@verdaccio/types": "5.0.2",
"codecov": "3.3.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"husky": "0.14.3",
"jest": "24.7.1",
"lint-staged": "7.3.0",
"rmdir-sync": "1.0.1",
"standard-version": "5.0.2",
"typescript": "3.2.4"
},
"keywords": [
"verdaccio",
"plugin",
"storage"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"npm run format",
"npm run lint",
"git add"
]
},
"engines": {
"node": ">=8"
},
"author": "Juan Picado <[email protected]>",
"private": false,
"license": "MIT"
}