forked from evanplaice/jquery-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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": "jquery-csv",
"version": "1.0.21",
"description": "A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete",
"license": "MIT",
"repository": "http://github.com/evanplaice/jquery-csv",
"author": {
"name": "Evan Plaice",
"email": "[email protected]",
"url": "http://evanplaice.com"
},
"contributors": [
{
"name": "Colton Ehrman",
"email": "[email protected]",
"url": "http://coltonehrman.com"
}
],
"main": "src/jquery.csv.js",
"scripts": {
"start": "npx live-server",
"test": "tape ./test/*.js",
"lint": "standard",
"minify": "npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle",
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
"preversion": "npm run lint && npm run test",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"standard": "^16.0.3",
"tape": "^4.13.2"
},
"standard": {
"globals": [
"$",
"jQuery"
]
}
}