-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "enju",
"version": "5.3.0",
"description": "An elasticsearch client on node.js written in CoffeeScript.",
"main": "index.js",
"scripts": {
"build": "grunt build",
"test": "grunt coffee:test && ./node_modules/jest/bin/jest.js --coverage",
"changelog": "node_modules/conventional-changelog-cli/cli.js -n node_modules/@kelp404/changelog.config",
"coveralls": "./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info",
"ncu": "./node_modules/npm-check-updates/bin/ncu"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kelp404/enju.git"
},
"keywords": [
"elasticsearch",
"NoSQL",
"database",
"ORM"
],
"files": [
"index.js",
"lib"
],
"author": "Kelp <kelp@phate.org> (https://github.com/kelp404)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kelp404/enju/issues"
},
"homepage": "https://github.com/kelp404/enju",
"devDependencies": {
"@kelp404/changelog.config": "0.1.0",
"coffeescript": "2.3.2",
"conventional-changelog-cli": "2.2.2",
"coveralls": "3.0.3",
"grunt": "1.5.3",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-coffee": "2.0.0",
"grunt-contrib-watch": "1.1.0",
"jest": "24.7.1",
"load-grunt-tasks": "4.0.0",
"npm-check-updates": "3.1.8",
"time-grunt": "2.0.0"
},
"dependencies": {
"config": "3.3.7",
"elasticsearch": "15.5.0"
}
}