-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "csv-js",
"description": "A CSV (comma-separated values) parser written in JavaScript.",
"version": "0.2.5",
"author": "Christopher Parker <[email protected]> (http://www.cparker15.com)",
"contributors": [
"Christopher Parker <[email protected]> (http://www.cparker15.com)",
"Joel Truher (https://github.com/truher)"
],
"homepage": "http://www.cparker15.com/code/utils/csv-to-json/",
"repository": {
"type": "git",
"url": "git://github.com/cparker15/CSV-js.git"
},
"bugs": "https://github.com/cparker15/CSV-js/issues",
"scripts": {
"test": "grunt ci"
},
"engines": {
"node": ">= 0.8.0",
"npm": ">=1.2.10"
},
"keywords": [
"csv",
"parser"
],
"peerDependencies": {
"grunt-cli": "~0.1.7"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-watch": "~0.4.4"
}
}