-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "payline",
"version": "1.0.2",
"description": "NodeJS SDK for payline.com API",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "gulp watch",
"build": "babel src/ -d dist/ && cp src/*.wsdl dist/",
"prepublish": "yarn lint && yarn build"
},
"homepage": "https://github.com/cubyn/payline",
"repository": {
"type": "git",
"url": "git://github.com/cubyn/payline.git"
},
"engine": {
"node": ">=4"
},
"author": "Cubyn",
"license": "MIT",
"dependencies": {
"bluebird": "2.10.x",
"debug": "2.2.x",
"soap": "^0.9.x"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-block-scoping": "^6.21.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.21.0",
"eslint": "^3.13.0",
"eslint-config-cubyn": "^1.0.12",
"gulp": "^3.9.1",
"gulp-babel": "^5.3.0",
"gulp-mocha": "^2.1.3"
}
}