-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 805 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 805 Bytes
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": "csv-import",
"version": "1.0.0",
"description": "Easy CSV file importing",
"main": "src/index.js",
"engines": {
"node": "8.9.x"
},
"scripts": {
"test": "jest"
},
"author": "bmrobin9823@gmail.com",
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.3.1",
"fast-csv": "^2.4.1",
"highland": "^2.11.1"
},
"devDependencies": {
"jest": "^22.4.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js"
],
"coverageDirectory": "coverage",
"resetMocks": true,
"resetModules": true,
"transformIgnorePatterns": [
"/node_modules/(?!lib/).*"
]
}
}