-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.25 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.25 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
{
"name": "hull-customerio",
"description": "Sync users within customer.io service",
"version": "0.1.0",
"homepage": "https://github.com/hull-ships/hull-customerio",
"license": "MIT",
"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-customerio"
},
"bugs": {
"url": "https://github.com/hull-ships/hull-customerio/issues"
},
"scripts": {
"build": "npm run clean && npm run build:server",
"build:server": "babel server -d build",
"start": "npm run build && node build",
"start:dev": "NODE_ENV=development LOG_LEVEL=debug babel-watch -L server",
"test": "npm run test:lint && npm run test:flow && npm run test:integration && npm run test:unit",
"test:lint": "eslint server",
"test:flow": "flow check",
"test:unit": "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",
"test:coverage": "nyc --babel-cache --hook-run-in-context false npm test",
"clean": "rimraf dist; rimraf lib"
},
"keywords": [
"hull",
"ship",
"hull-ship",
"connector"
],
"dependencies": {
"axios": "^0.16.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"bluebird": "^3.4.1",
"bottleneck": "^1.16.0",
"express": "^4.15.3",
"hull": "0.12.0",
"lodash": "^4.13.1",
"moment": "2.18.1",
"rimraf": "^2.6.1"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-eslint": "^6.1.0",
"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.0.1",
"flow-bin": "^0.51.0",
"jwt-simple": "0.5.1",
"mocha": "^3.4.2",
"nock": "^9.0.14",
"nyc": "^11.0.3",
"sinon": "^1.17.4"
},
"nyc": {
"include": [
"server"
]
}
}