-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"bin": {
"nubank-ofx-preview": "./dist/main.js"
},
"name": "nubank-ofx-preview",
"version": "0.0.7",
"description": "Generate a preview OFX from your NuBank account",
"scripts": {
"build": "mkdir -p dist && babel src/index.js -o dist/main.js",
"start": "babel-node src/index.js",
"test": "mocha --compilers js:babel-core/register src/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ravishi/nubank-ofx-preview.git"
},
"author": "Dirley Rodrigues <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ravishi/nubank-ofx-preview/issues"
},
"homepage": "https://github.com/ravishi/nubank-ofx-preview#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"mocha": "^5.1.1"
},
"dependencies": {
"chrono-node": "^1.3.5",
"inquirer": "^5.2.0",
"moment": "^2.20.1",
"object-hash": "^1.3.0",
"p-try": "^1.0.0",
"puppeteer": "^1.2.0",
"shorthash": "0.0.2",
"yargs": "^11.0.0"
}
}