-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 888 Bytes
/
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
{
"name": "csv-to-array-matrix",
"version": "0.1.1",
"description": "A simple CVS to arrays in array (Matrix) parser.",
"main": "lib/index.js",
"dependencies": {
"fast-csv": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
},
"scripts": {
"compile": "babel --presets es2015,stage-2 -d lib/ src/",
"prepublish": "npm run compile",
"test": "echo \"No test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rwieruch/csv-to-array-matrix.git"
},
"keywords": [],
"author": "“Robin <“[email protected]”> (https://www.robinwieruch.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rwieruch/csv-to-array-matrix/issues"
},
"homepage": "https://github.com/rwieruch/csv-to-array-matrix#readme"
}