-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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": "csv-transformer",
"version": "0.0.0",
"main": "lib/csv-transformer.js",
"description": "Transform CSV to JSON and RDF",
"homepage": "https://github.com/waingram/csv-transformer",
"bugs": "https://github.com/waingram/csv-transformer/issues",
"author": {
"name": "Bill Ingram",
"email": "bill@bill-ingram.com",
"url": "http://bill-ingram.com"
},
"repository": {
"type": "git",
"url": "https://github.com/waingram/csv-transformer"
},
"license": "UofI-NCSA",
"files": [
"lib"
],
"keywords": [
"csv-transformer",
"csv",
"json",
"rdf",
"csvw",
"w3c"
],
"devDependencies": {
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.3.3",
"grunt-contrib-watch": "^0.6.1",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.3.1",
"grunt-mocha-cli": "^1.9.0",
"jshint-stylish": "^0.2.0"
},
"scripts": {
"test": "grunt"
},
"bin": {
"csv-transformer": "cli.js"
},
"preferGlobal": "true",
"dependencies": {
"express": "^4.11.2",
"request": "^2.53.0"
}
}