-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "convert-array-to-csv",
"version": "2.0.0",
"description": "Convert an array to a csv formatted string",
"main": "./lib/index.js",
"repository": "https://www.github.com/aichbauer/node-convert-array-to-csv",
"author": "Aichbauer Lukas <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"pretest": "npm run build && npm run lint",
"lint": "eslint src",
"test": "jest --coverage",
"build": "babel src --out-dir lib",
"prepush": "npm run test",
"prepare": "npm run build"
},
"keywords": [
"array",
"csv",
"list",
"convert",
"comma-separated",
"values",
"convert-array-to-csv"
],
"jest": {
"globals": {
"__DEV__": true
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-core": "^7.0.0-0",
"babel-jest": "^24.9.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^0.14.3",
"jest": "^24.9.0",
"regenerator-runtime": "^0.12.1"
}
}