forked from nulltask/express-csv
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.24 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
50
{
"name": "csv-express",
"description": "Adds a CSV response method to expressjs applications.",
"version": "1.2.2",
"author": "John J Czaplewski (forked from Seiya Konno)",
"contributors": [
{
"name": "Seiya Konno",
"web": "nulltask@gmail.com"
},
{
"name": "Matthew Blackshaw",
"web": "http://mattblackshaw.com"
},
{
"name": "Craig McDonald",
"web": "http://thrackle.com"
},
{
"name": "Alexey Avramchik",
"web": "https://github.com/alexcrack"
}
],
"devDependencies": {
"express": "4.x",
"mocha": "^2.3.2",
"should": "^7.1.0",
"superagent": "^1.4.0"
},
"keywords": [
"express",
"expressjs",
"csv"
],
"repository": "git://github.com/jczaplew/csv-express.git",
"main": "index.js",
"engines": {
"node": "0.6 || 0.8 || 0.10 || 0.12 || 4.x"
},
"scripts": {
"test-express-2": "npm install express@2.x && mocha test/2",
"test-express-3": "npm install express@3.x && mocha test/3+",
"test-express-4": "npm install express@4.x && mocha test/3+",
"test": "npm run test-express-2 && npm run test-express-3 && npm run test-express-4",
"prepublish": "make test"
},
"dependencies": {
"iconv-lite": "^0.4.13"
}
}