-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "@npms/queries",
"version": "3.0.0",
"description": "Module that offers a variety of queries around npms data",
"main": "index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore '{*.js,lib/**/*.js,test/**/*.js}' ",
"test": "NOCK_BACK_MODE=record mocha --bail",
"test-cov": "NOCK_BACK_MODE=record istanbul cover --dir test/coverage _mocha && echo Coverage lies in test/coverage/lcov-report/index.html",
"test-travis": "NOCK_BACK_MODE=lockdown istanbul cover _mocha --report lcovonly",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master"
},
"bugs": "https://github.com/npms-io/queries/issues/",
"repository": {
"type": "git",
"url": "git://github.com/npms-io/queries.git"
},
"keywords": [
"npms",
"query",
"queries"
],
"author": "André Cruz <[email protected]>",
"license": "MIT",
"dependencies": {
"deep-compact": "^1.0.2",
"elasticsearch": "^15.2.0",
"joi": "^14.0.2",
"lodash": "^4.17.11",
"normalize-number": "^1.0.3",
"p-try": "^2.0.0",
"search-query-parser": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-moxy": "^6.1.1",
"husky": "^1.1.2",
"istanbul": "^0.4.1",
"lint-staged": "^8.0.4",
"mocha": "^5.2.0",
"nock": "^10.0.1",
"standard-version": "^4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}