-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "ElasticModels",
"version": "0.0.1",
"description": "Models for elasticsearch!",
"author": "Mateusz Śpiewak <[email protected]>",
"bin": {
"ElasticModels": "./bin/"
},
"scripts": {
"start": "node index.js",
"compile": "babel -d lib/ bin/ && browserify ./bin/index.js -o ./bin/index.min.js",
"test": "mocha lib/**/**/**/**/*.spec.js --opts mocha.opts"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nodejitsu/browsenpm.org"
},
"bugs": {
"url": "https://github.com/nodejitsu/browsenpm.org/issues"
},
"keywords": [
"elasticsearch",
"models",
"node",
"browser"
],
"dependencies": {
"bluebird": "^3.4.6",
"eslint-config-standard": "^6.0.0",
"express": "^4.14.0",
"moment": "^2.14.1",
"ramda": "^0.22.1"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-babili": "0.0.2",
"babel-preset-es2015": "^6.14.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"elasticsearch": "^11.0.1",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.0.2",
"mocha-circleci-reporter": "0.0.1",
"mocha-eslint": "^3.0.0",
"should": "^11.1.0"
},
"license": "MIT"
}