This repository has been archived by the owner on Feb 5, 2020. It is now read-only.
forked from verdaccio/local-storage
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
75 lines (75 loc) · 2.15 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
{
"name": "verdaccio-s3-storage",
"version": "0.2.1",
"description": "aws s3 storage implementation",
"repository": {
"type": "git",
"url": "https://github.com/Remitly/verdaccio-s3-storage.git"
},
"bugs": {
"url": "https://github.com/Remitly/verdaccio-s3-storage/issues"
},
"main": "lib/index.js",
"scripts": {
"release": "standard-version -a -s",
"test": "npm run lint && jest",
"lint": "npm run flow && eslint .",
"commitmsg": "commitlint -e $GIT_PARAMS",
"flow": "flow",
"build": "rm -rf lib/ && babel src/ --out-dir lib/ --copy-files --ignore ___tests___",
"watch": "babel --source-maps --watch src/ --out-dir lib/ --copy-files --ignore ___tests___",
"prepublish": "npm run build",
"format": "prettier --single-quote --trailing-comma none --write \"{src,test}/**/*.js\"",
"cover": "cross-env NODE_ENV=test nyc npm t"
},
"dependencies": {
"@verdaccio/file-locking": "0.0.5",
"@verdaccio/streams": "1.0.0",
"async": "2.6.0",
"aws-sdk": "^2.229.1"
},
"devDependencies": {
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"@verdaccio/types": "2.2.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-flow-runtime": "0.17.0",
"babel-preset-env": "1.6.1",
"babel-preset-flow": "6.23.0",
"cross-env": "5.1.4",
"eslint": "4.19.1",
"eslint-config-google": "0.9.1",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-flowtype": "2.46.3",
"eslint-plugin-jest": "21.15.1",
"eslint-plugin-prettier": "2.6.0",
"flow-bin": "0.70.0",
"flow-runtime": "0.17.0",
"husky": "0.14.3",
"jest": "^22.4.3",
"prettier": "1.12.1",
"recursive-readdir": "^2.2.2",
"standard-version": "4.3.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"verdaccio",
"local-storage"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=6.12.0"
},
"author": "Juan Picado <[email protected]>",
"private": false,
"license": "MIT"
}