This repository has been archived by the owner on Aug 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 2.17 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "verdaccio-google-cloud",
"version": "0.0.10",
"description": "verdaccio storage plugin implementation for google cloud",
"main": "lib/index.js",
"scripts": {
"test": " jest --config ./jest.config.js",
"format": "prettier --single-quote --trailing-comma none --write \"{src,types,test}/**/*.{ts}\"",
"lint": "npm run type-check && eslint . --ext .js,.ts",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"prepublish": "npm run build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"build": "babel src/ --out-dir lib/ --copy-files --extensions \".ts,.tsx\"",
"coverage:publish": "codecov",
"release": "standard-version -a -s"
},
"keywords": [
"verdaccio",
"verdaccio-plugin",
"google-cloud",
"datastore",
"storage"
],
"repository": {
"type": "git",
"url": "git://github.com/verdaccio/verdaccio-google-cloud"
},
"author": "Juan Picado <[email protected]>",
"license": "MIT",
"dependencies": {
"@google-cloud/datastore": "4.1.3",
"@google-cloud/storage": "2.5.0",
"@verdaccio/commons-api": "^0.1.2",
"@verdaccio/streams": "2.0.0"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@commitlint/travis-cli": "8.1.0",
"@types/http-errors": "1.6.1",
"@types/jest": "24.0.16",
"@types/lodash": "4.14.136",
"@types/node": "12.6.8",
"@verdaccio/babel-preset": "0.2.1",
"@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": "2.5.0",
"jest": "24.8.0",
"lint-staged": "8.2.1",
"memory-fs": "0.4.1",
"standard-version": "7.0.0",
"typescript": "3.5.3"
},
"optionalDependencies": {
"fast-crc32c": "1.0.4"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts, json}": [
"eslint .",
"prettier --write",
"git add"
]
}
}