-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.44 KB
/
package.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.44 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
75
76
77
78
79
80
81
82
{
"name": "hull-pardot",
"description": "Synchronize Hull users and Pardot Prospects",
"version": "0.1.0",
"homepage": "https://github.com/hull-ships/hull-pardot",
"license": "MIT",
"author": {
"name": "Hull",
"email": "contact@hull.io",
"url": "https://github.com/hull"
},
"engines": {
"node": "6.x",
"npm": "3.x",
"yarn": "0.27.5"
},
"repository": {
"type": "git",
"url": "git://github.com/hull-ships/hull-pardot"
},
"bugs": {
"url": "https://github.com/hull-ships/hull-pardot/issues"
},
"scripts": {
"build": "npm run clean && npm run build:server",
"build:client": "NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --colors",
"build:server": "babel server -d build",
"clean": "./node_modules/.bin/rimraf build",
"start": "node build",
"start:dev": "WORKER_MODE=embedded SECRET=12345 babel-watch -L server",
"test": "npm run test:lint && npm run test:flow && npm run test:integration",
"test:lint": "eslint server",
"test:flow": "flow check",
"test:units": "NODE_ENV=test mocha --require babel-register -R spec ./test/unit/*.js",
"test:integration": "NODE_ENV=test mocha --require babel-register -R spec ./test/integration/*.js",
"update": "updtr",
"watch": "watch 'clear && npm run test:lint -s && npm run test:units -s && npm run build:client -s' server src",
"postinstall": "npm run build"
},
"keywords": [
"hull",
"ship",
"hull-ship"
],
"dependencies": {
"axios": "^0.16.2",
"babel-cli": "^6.10.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"body-parser": "^1.15.2",
"dotenv": "^2.0.0",
"promise-retry": "^1.1.1",
"ejs": "^2.4.2",
"express": "^4.14.0",
"cors": "^2.8.4",
"hull": "0.13.0-beta.12",
"lodash": "^4.13.1",
"moment": "^2.18.1",
"qs": "latest",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.2.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.5",
"babel-loader": "^6.2.4",
"babel-watch": "^2.0.5",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"minihull": "^2.1.0",
"mocha": "^2.5.3",
"nock": "^9.0.14",
"sinon": "^2.1.0",
"jwt-simple": "0.5.1",
"updtr": "^0.1.15",
"watch": "^0.19.1"
}
}