-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.15 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
43
44
45
{
"name": "jquery-classlist",
"type": "commonjs",
"version": "1.0.4-pre",
"description": "Re-implementation of jQuery class manipulation methods that utilizes the classList interface",
"homepage": "https://github.com/mgol/jquery.classList",
"author": {
"name": "Michał Gołębiowski-Owczarek",
"email": "[email protected]"
},
"keywords": [
"jquery",
"plugin",
"ecosystem:jquery",
"jquery-plugin",
"browser"
],
"main": "dist/jquery.class_list.js",
"repository": {
"type": "git",
"url": "https://github.com/mgol/jquery.classList.git"
},
"bugs": "https://github.com/mgol/jquery.classList/issues",
"license": "MIT",
"files": [
"dist/jquery.class_list.js",
"dist/jquery.class_list.min.js",
"dist/jquery.class_list.min.js.map",
"LICENSE.txt"
],
"devDependencies": {
"eslint-config-mgol": "0.0.49",
"globals": "15.4.0",
"grunt": "1.6.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-eslint": "25.0.0",
"load-grunt-tasks": "5.1.0",
"time-grunt": "2.0.0"
},
"scripts": {
"prepublish": "grunt build",
"test": "grunt test"
}
}