-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "node-solr-lambda",
"version": "3.0.6",
"description": "Minimalistic Solr client written in functional programming style",
"main": "src/index",
"repository": "https://github.com/vsimko/node-solr-lambda.git",
"author": "Viliam Simko <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "10.1.0",
"standard-version": "^9.5.0"
},
"resolutions": {},
"scripts": {
"git-cred": "git config credential.helper store",
"lint": "eslint .",
"test": "mocha",
"test:prepare": "docker-compose -f test/docker-compose.yml up",
"release": "standard-version",
"release:push": "git push --follow-tags origin master",
"release:npm": "yarn publish"
}
}