forked from michaloo/hull-preview
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
{
"name": "hull-preview",
"version": "0.1.0",
"description": "A connector adding user information preview at any website",
"main": "build/index.js",
"scripts": {
"build": "npm run clean && npm run build:server",
"build:server": "babel ./server -d ./build",
"start": "node ./build",
"start:dev": "NODE_ENV=development babel-watch -L ./server",
"test": "npm run test:lint && npm run test:units",
"test:lint": "eslint ./server",
"test:units": "NODE_ENV=test mocha --require babel-register -R spec ./tests/* ./tests/**/*",
"ngrok": "ngrok http 8082 --region eu --subdomain preview",
"update": "./node_modules/.bin/updtr; ./node_modules/.bin/depcheck",
"clean": "./node_modules/.bin/rimraf ./build",
"postinstall": "npm run build"
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"repository": {
"type": "git",
"url": "https://github.com/hull-ships/hull-preview.git"
},
"keywords": [
"hull",
"webhook"
],
"author": "Hull",
"license": "MIT",
"bugs": {
"url": "https://github.com/hull-ships/hull-preview/issues"
},
"homepage": "https://github.com/hull-ships/hull-preview",
"dependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bluebird": "^3.3.5",
"body-parser": "^1.15.1",
"cors": "^2.8.1",
"express": "^4.13.4",
"hull": "^0.11.0-beta.1",
"jwt-simple": "^0.5.1",
"lodash": "^4.12.0",
"node-jose": "^0.9.3",
"rimraf": "^2.5.4",
"winston-logstash": "^0.3.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-watch": "^2.0.2",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"updtr": "^0.2.3"
}
}