-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.16 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "hull-salesforce",
"version": "0.4.2",
"description": "Hull Salesforce integration",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build:server",
"build:server": "./node_modules/.bin/babel server -d build --ignore __tests__",
"start": "./node_modules/.bin/nf start",
"start:dev": "NODE_ENV=development ./node_modules/.bin/babel-watch -L server",
"test": "npm run test:lint && jest",
"test:lint": "eslint server",
"test:modules": "npm outdated --depth=0",
"clean": "./node_modules/.bin/rimraf build",
"update": "./node_modules/.bin/updtr",
"postinstall": "npm run build"
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"jest": {
"rootDir": "server",
"transform": {
".*": "../node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"modulePathIgnorePatterns": [
"node_modules"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hull-ships/hull-salesforce.git"
},
"keywords": [
"hull",
"salesforce",
"integration"
],
"author": "Hull",
"license": "MIT",
"bugs": {
"url": "https://github.com/hull-ships/hull-salesforce/issues"
},
"homepage": "https://github.com/hull-ships/hull-salesforce",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"cache-manager": "^2.2.0",
"cors": "^2.8.1",
"ejs": "^2.5.6",
"express": "^4.15.2",
"foreman": "^2.0.0",
"hogan.js": "^3.0.2",
"hull": "^0.11.0",
"jsforce": "^1.7.1",
"librato-node": "^5.0.0",
"lodash": "^4.16.6",
"newrelic": "^1.33.0",
"node-babel": "^0.1.2",
"passport-forcedotcom": "^0.1.4",
"rimraf": "^2.5.4",
"winston-logstash": "^0.3.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-watch": "^2.0.3",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"rimraf": "^2.5.4"
}
}