-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 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
{
"name": "jquery-freud",
"version": "1.2.0",
"description": "Add behaviours to DOM elements, somewhat like components. These are simple Javascript classes that can do whatever you want with the element. Much simpler than building a jQuery plugin and less messy than one big js file.",
"homepage": "http://github.com/abuisman/jquery-freud",
"author": [
"Achilleas Buisman <jquery-freud@abuisman.nl>"
],
"repository": {
"type": "git",
"url": "https://github.com/abuisman/jquery-freud.git"
},
"main": "dist/jquery-freud.min.js",
"keywords": [
"components",
"elements",
"contained",
"behaviour"
],
"license": "MIT",
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jade": "^1.0.0",
"grunt-contrib-jasmine": "^1.1.0",
"grunt-contrib-uglify": "^3.0.1",
"grunt-contrib-watch": "^1.0.0"
},
"scripts": {
"test": "grunt test"
}
}