forked from evanplaice/jquery-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "jquery-csv",
"version": "0.8.12",
"description": "A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete",
"author": {
"name": "Evan Plaice",
"email": "[email protected]"
},
"devDependencies": {
"jquery": "^3.0",
"tap-spec": "^5.0.0",
"tape": "^4.8.0"
},
"main": "src/jquery.csv.js",
"scripts": {
"start": "npx live-server",
"test": "npx tape ./test/*.js | tap-spec",
"lint": "npm run lint:htmlhint && npm run lint:semistandard",
"lint:htmlhint": "npx htmlhint --config .htmlhint examples/**/*.html",
"lint:semistandard": "npx semistandard",
"minify": "npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle",
"preversion": "npm run test",
"postversion": "git push --follow-tags",
"prepublish": "npm run lint && npm run test"
},
"license": "MIT",
"repository": "http://github.com/evanplaice/jquery-csv/",
"semistandard": {
"globals": [
"$",
"jQuery"
]
}
}