forked from Krinkle/jquery-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
40
41
42
{
"name": "jquery-json",
"description": "jQuery plugin for serialising to and parsing from JSON.",
"version": "2.6.0",
"keywords": [
"jquery-plugin"
],
"homepage": "https://github.com/Krinkle/jquery-json",
"repository": {
"type": "git",
"url": "git://github.com/Krinkle/jquery-json.git"
},
"bugs": {
"url": "https://github.com/Krinkle/jquery-json/issues"
},
"author": "Brantley Harris <[email protected]> (https://github.com/DeadWisdom)",
"contributors": [
"Timo Tijhof <[email protected]> (https://github.com/Krinkle)"
],
"license": "MIT",
"scripts": {
"test": "grunt test",
"build": "npm install && grunt build"
},
"files": [
"src",
"dist",
"LICENSE.txt",
"README.md"
],
"main": "./src/jquery.json.js",
"devDependencies": {
"grunt": "1.0.1",
"grunt-contrib-connect": "1.0.2",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-qunit": "1.2.0",
"grunt-contrib-uglify": "2.0.0",
"grunt-jscs": "3.0.1",
"jquery": "1.11.2",
"qunitjs": "2.0.1"
}
}