-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "alelo",
"version": "0.0.4",
"description": "Uma API simples para consulta de saldo de cartão e afins.",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/muniz95/alelo-api.git"
},
"author": "Rodrigo Muniz <rodrigo.temiski1995@gmail.com>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"request": "^2.81.0",
"request-promise": "^4.2.0"
},
"bugs": {
"url": "https://github.com/muniz95/alelo-api/issues"
},
"homepage": "https://github.com/muniz95/alelo-api#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"debug": "^2.6.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
},
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build",
"test": "node_modules/.bin/mocha --timeout 15000 --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
}
}