-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
53 lines (47 loc) · 978 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "jinplace",
"version": "1.2.1",
"title": "Jinplace - A plugin for in place editing",
"description": "A jQuery plugin for in place editing on a page, primarly controlled by HTML markup.",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": {
"type": "hg",
"url": "https://bitbucket.org/itinken/jinplace"
},
"keywords": [
"jquery-plugin",
"inline",
"edit",
"form"
],
"author": {
"name": "Steve Ratcliffe"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"homepage": "https://bitbucket.org/itinken/jinplace",
"bugs": "https://bitbucket.org/itinken/jinplace/issues",
"dependencies": {
"jquery": ">=1.7"
},
"files": [
"js/*"
],
"main": "js/jinplace.js",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-qunit": "~0.2.2",
"grunt-closurecompiler": "~0.9.5",
"grunt-contrib-clean": "~0.5.0"
},
"scripts": {
"test": "grunt qunit"
}
}