-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "interfax",
"version": "0.8.2",
"description": "A wrapper around the InterFAX REST API for sending and receiving faxes.",
"main": "lib/interfax.js",
"scripts": {
"prebuild": "eslint src",
"build": "babel -d lib src/ -s inline",
"pretest": "eslint tests",
"test": "mocha --compilers js:babel-register tests/*.js",
"watch:test": "watch 'npm test' tests src",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interfax/interfax-nodejs.git"
},
"keywords": [
"fax",
"faxing",
"interfax"
],
"author": "InterFAX",
"license": "MIT",
"bugs": {
"url": "https://github.com/interfax/interfax-nodejs/issues"
},
"contributors": [
"cbetta"
],
"homepage": "https://github.com/interfax/interfax-nodejs#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"eslint": "^3.2.2",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"watch": "^0.19.1"
},
"dependencies": {
"bluebird": "^3.4.1",
"mime": "^1.3.4"
}
}