-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "freshx",
"version": "0.0.1",
"description": "Transforms a CSV exported from Freshbooks into a format which can be imported into Quickbooks Online",
"author": "Dylan Bishop",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/dbishoponline/freshx.git"
},
"preferGlobal": true,
"main": "dist/index.js",
"bin": "./bin/transform",
"scripts": {
"transform": "./scripts/transform.sh",
"debug": "./scripts/debug.sh",
"build": "./scripts/build.sh",
"test": "./scripts/test.sh",
"test:coverage": "nyc report",
"start": "./scripts/start.sh",
"stop": "./scripts/stop.sh"
},
"dependencies": {
"@babel/polyfill": "^7.4.0",
"@babel/runtime": "^7.4.2",
"bluebird": "^3.5.3",
"crocks": "^0.11.1",
"csv": "^5.1.1",
"fs": "0.0.2",
"path": "^0.12.7",
"ramda": "^0.26.1",
"ramda-fantasy": "^0.8.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"ava": "^1.3.1",
"debug": "^4.1.1",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-concat-css": "^3.1.0",
"gulp-jshint": "^2.1.0",
"gulp-less": "^4.0.1",
"gulp-livereload": "^4.0.1",
"gulp-load-plugins": "^1.5.0",
"gulp-open": "^3.0.1",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-watch": "^5.0.1",
"nodemon": "^1.19.1",
"nyc": "^13.3.0",
"require-dir": "^1.2.0",
"run-sequence": "^2.2.1",
"sinon": "^7.3.0",
"tap-nyan": "^1.1.0"
},
"ava": {
"files": [
"dist/*.spec.js"
],
"tap": true,
"require": [
"@babel/register"
]
}
}