-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
43
44
45
46
{
"name": "@nathanhamilton/invoiceninja_uploader",
"version": "1.0.0",
"description": "This is an application developed to migrate data to invoice ninja from a CSV file through the Invoice Ninja API.",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node app/index.js",
"start": "babel-node app/index.js",
"test": "npm run test"
},
"repository": {
"type": "git",
"url": "git://github.com/nathanhamilton/invoiceninja_uploader.git"
},
"keywords": [
"Invoice",
"Ninja",
"CSV",
"Uploader"
],
"author": "Nathan Hamilton",
"license": "ISC",
"bugs": {
"url": "https://github.com/nathanhamilton/invoiceninja_uploader/issues"
},
"homepage": "https://github.com/nathanhamilton/invoiceninja_uploader#readme",
"dependencies": {
"ajv": "^6.10.0",
"csv-parser": "^2.2.0",
"dotenv": "^7.0.0",
"mysql": "^2.16.0",
"prompt": "^1.0.0",
"request": "^2.88.0",
"slow-stream": "0.0.4",
"throttled-request": "^0.1.1"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"standard": "^12.0.1"
},
"engines": {
"node": "11.12.0"
}
}