-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
48 lines (48 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
{
"name": "nubank",
"version": "1.1.3",
"description": "NuBank API",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"pre-publish": "babel src/ --out-dir ./dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Astrocoders/nubank-api.git"
},
"keywords": [
"nubank"
],
"author": "Gabriel Rubens (twitter.com/_gabrielrubens)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Astrocoders/nubank-api/issues"
},
"homepage": "https://github.com/Astrocoders/nubank-api#readme",
"dependencies": {
"jest-cli": "^16.0.2",
"lodash": "^4.16.4",
"node-fetch": "^1.6.3"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1"
},
"jest": {
"browser": false,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}