-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 928 Bytes
/
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
{
"name": "oss-odm",
"version": "2.0.1",
"description": "Object document mapper for Open Search Server.",
"main": "index.js",
"scripts": {
"release": "standard-version",
"format": "prettier --write '**/*.{js, md}'",
"lint": "eslint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/lemonde/oss-odm.git"
},
"keywords": [
"oss",
"search"
],
"author": "Greg Bergé <berge.greg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lemonde/oss-odm/issues"
},
"homepage": "https://github.com/lemonde/oss-odm",
"dependencies": {
"async": "^3.2.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.2",
"node-oss-client": "^2.1.5",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"standard-version": "^7.1.0"
}
}