forked from verdaccio/verdaccio-htpasswd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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-htpasswd",
"version": "0.2.0",
"description": "verdaccio htpasswd auth plugin",
"main": "lib/index.js",
"keywords": [
"verdaccio",
"local-storage",
"plugin"
],
"author": "Ayush Sharma <[email protected]>",
"private": false,
"license": "MIT",
"scripts": {
"coverage": "codecov",
"test": "jest",
"lint": "npm run flow && npm run js-lint",
"js-lint": "eslint .",
"flow": "flow",
"build": "babel src/ --out-dir lib/ --copy-files --ignore ___tests___",
"precommit": "lint-staged",
"prepublish": "in-publish && npm run lint && npm run build || not-in-publish"
},
"dependencies": {
"@verdaccio/file-locking": "^0.0.5",
"apache-md5": "^1.1.2",
"bcryptjs": "2.4.3",
"unix-crypt-td-js": "^1.0.0"
},
"devDependencies": {
"@verdaccio/types": "^0.1.0",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-plugin-flow-runtime": "0.11.1",
"babel-preset-env": "1.6.0",
"babel-preset-flow": "6.23.0",
"codecov": "^3.0.0",
"cross-env": "5.0.5",
"eslint": "^4.4.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.5.0",
"flow-bin": "0.52.0",
"flow-runtime": "0.13.0",
"husky": "^0.14.3",
"in-publish": "^2.0.0",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"prettier": "^1.10.2",
"rmdir-sync": "^1.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=6.12.0"
},
"lint-staged": {
"*.{js, json}": [
"eslint .",
"prettier --write",
"git add"
]
}
}