-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "node-paymo",
"version": "0.0.1",
"description": "Wrapper for Paymo API",
"main": "dist/index.js",
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"test": "NODE_ENV=test mocha 'src/**/*.spec.js' --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riversy/node-paymo.git"
},
"keywords": [
"paymo",
"api",
"node"
],
"author": "Igor Goltsov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/riversy/node-paymo/issues"
},
"homepage": "https://github.com/riversy/node-paymo#readme",
"devDependencies": {
"babel-core": "6.18.2",
"babel-jest": "16.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-node4": "2.1.0",
"babel-register": "6.18.0",
"chai": "^3.5.0",
"clone": "2.0.0",
"eslint": "3.9.1",
"gulp": "3.9.1",
"gulp-babel": "^6.1.1",
"gulp-clean": "0.3.2",
"gulp-conventional-changelog": "1.1.0",
"gulp-eslint": "^3.0.1",
"lodash": "^4.16.6",
"mocha": "^3.1.0",
"request": "^2.78.0",
"request-promise": "^4.1.1",
"sinon": "^1.17.6"
},
"dependencies": {
"request": "^2.75.0"
}
}