-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.82 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
{
"name": "feathers-sendwithus",
"version": "0.1.0",
"description": "Feathers service for sending mailers with sendwithus.com.",
"main": "./lib",
"scripts": {
"compile": "rimraf lib/ && babel -d lib/ src/",
"prepublish": "npm run compile",
"watch": "npm-watch",
"lint": "eslint src/ test/ || true",
"tape": "babel-tape-runner test | tap-spec",
"test": "npm run lint && npm run tape",
"commit": "git-cz"
},
"watch": {
"test": {
"patterns": [
"src/**/*.js",
"test/**/*.js"
],
"quiet": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fixate/feathers-sendwithus.git"
},
"keywords": [
"feathers",
"sendwithus",
"mailer",
"email"
],
"author": "Stan Bondi <stan@fixate.it>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/fixate/feathers-sendwithus/issues"
},
"homepage": "https://github.com/feathers-sendwithus#readme",
"dependencies": {
"async": "^2.1.4",
"debug": "^2.2.0",
"lodash.chunk": "^4.2.0",
"lodash.flatten": "^4.4.0",
"moment": "^2.14.1",
"restler": "^3.4.0",
"sendwithus": "^2.9.2"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.2.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"faker": "^3.1.0",
"npm-watch": "^0.1.5",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"tape-async": "^2.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}