-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
50
51
52
53
54
55
56
57
58
59
{
"name": "nodejs-pagseguro",
"version": "1.0.9",
"author": "Willy Chagas <[email protected]",
"description": "pagseguro nodejs",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"test": "NODE_ENV=tests jest",
"example": "nodemon example/api/index.js",
"clean": "rimraf lib",
"build": "BABEL_ENV=production babel src --out-dir lib",
"postversion": "git push && git push --tags && rm -rf build/temp",
"prepublish": "npm run clean && npm run test && npm run build"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"ip": "^1.1.5",
"clone": "^2.1.2",
"fast-xml-parser": "^3.12.5",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-preset-minify": "^0.5.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"jest": "^24.1.0",
"moment": "^2.24.0",
"nodemon": "^1.17.3",
"rimraf": "^2.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wchagas/pagseguro-node.git"
},
"bugs": {
"url": "https://github.com/wchagas/pagseguro-node/issues"
},
"homepage": "https://github.com/wchagas/pagseguro-node#readme",
"keywords": [
"nodejs",
"pagseguro"
]
}