forked from evanplaice/jquery-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 972 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
31
32
33
34
35
36
37
38
39
{
"name": "jquery-csv",
"version": "0.8.3",
"description": "A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete",
"author": {
"name": "Evan Plaice",
"email": "[email protected]"
},
"dependencies": {},
"devDependencies": {
"chai": "^2.0.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.7.0",
"grunt-htmlhint": "^0.4.1",
"grunt-mocha": "^0.4.11",
"jquery": "^2.1.3",
"mocha": "^2.1.0",
"mocha-phantomjs": "^3.5.3",
"phantomjs": "^1.9.15"
},
"main": "src/jquery.csv.js",
"engines": {
"node": ">= 0.8.x"
},
"scripts": {
"test": "test-node & test-browser",
"test-node": "mocha test/test.js",
"test-browser": "mocha-phantomjs ./test/test.html"
},
"license": {
"type": "MIT"
},
"repository": {
"type": "git",
"url": "http://github.com/evanplaice/jquery-csv/"
},
"readmeFilename": "README.md"
}