forked from edfryed/hull-datanyze
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.08 KB
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
66
67
68
69
70
71
72
73
74
{
"name": "hull-datanyze",
"description": "Enrich Customer data with Datanyze",
"version": "0.1.1",
"homepage": "https://github.com/hull-ships/hull-datanyze",
"license": "MIT",
"main": "bin/start",
"author": {
"name": "Hull",
"email": "contact@hull.io",
"url": "https://github.com/hull"
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"repository": {
"type": "git",
"url": "git://github.com/hull-ships/hull-datanyze"
},
"bugs": {
"url": "https://github.com/hull-ships/hull-datanyze/issues"
},
"scripts": {
"build": "npm run clean && npm run build:server",
"build:server": "./node_modules/.bin/babel server -d lib",
"start": "node ./lib",
"start:dev": "NODE_ENV=development ./node_modules/.bin/nodemon -V -w server -x ./node_modules/.bin/babel-node -- server",
"test": "npm run test:lint && npm run test:units",
"test:units": "NODE_ENV=test mocha --require babel-register -R spec ./tests/* ./tests/**/*",
"test:lint": "eslint server",
"test:modules": "npm outdated --depth=0",
"clean": "./node_modules/.bin/rimraf dist; ./node_modules/.bin/rimraf lib",
"update": "./node_modules/.bin/updtr",
"postinstall": "npm run build"
},
"keywords": [
"hull",
"ship",
"datanyze",
"hull-ship"
],
"dependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"bluebird": "^3.4.7",
"cache-manager-redis": "^0.4.0",
"ejs": "^2.5.6",
"express": "^4.14.0",
"hull": "0.10.7",
"kue": "^0.11.5",
"lodash": "^4.14.1",
"newrelic": "^1.37.2",
"parse-domain": "^1.1.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"rimraf": "^2.5.4",
"winston-logstash": "^0.3.0"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"mocha": "^3.2.0",
"nodemon": "^1.9.2",
"updtr": "^0.1.15",
"webpack": "^1.13.1"
}
}