This repository was archived by the owner on Aug 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 KB
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
{
"name": "csv-mapper",
"description": "Node library for mapping CSV files with flexible YAML DSL for the mapping definition.",
"version": "1.0.9",
"homepage": "https://github.com/sphereio/csv-mapper",
"author": {
"name": "Oleg Ilyenko",
"email": "oleg.ilyenko@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:sphereio/csv-mapper.git"
},
"bugs": {
"url": "https://github.com/sphereio/csv-mapper/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sphereio/csv-mapper/blob/master/LICENSE-MIT"
}
],
"main": "main",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"bin": {
"csv-mapper": "bin/csv-mapper.js"
},
"dependencies": {
"optimist": "0.6.1",
"underscore": "~1.6.0",
"underscore.string": "2.3.3",
"q": "~1.0.0",
"q-io": "~1.10.9",
"csv": "0.3.7",
"rx": "2.2.27",
"js-yaml": "3.2.3"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-bump": "~0.0.11",
"grunt-cli": "~0.1.9",
"grunt-coffeelint": "~0.0.8",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.0",
"grunt-contrib-concat": "0.4.0",
"grunt-contrib-watch": "0.6.1",
"grunt-shell": "0.7.0",
"istanbul": "~0.2.3",
"jasmine-node": "~1.13.0"
},
"keywords": []
}