-
Notifications
You must be signed in to change notification settings - Fork 422
/
package.json
48 lines (48 loc) · 1.28 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
46
47
48
{
"name": "jquery.easing",
"version": "1.4.1",
"homepage": "https://github.com/gdsmith/jquery.easing",
"description": "A jQuery plugin from GSGD to give advanced easing options",
"author": {
"name": "George McGinley Smith",
"email": "george@gsgd.co.uk",
"url": "http://gsgd.co.uk/"
},
"contributors": [
"Brett Zamir"
],
"repository": {
"type": "git",
"url": "git://github.com/gdsmith/jquery.easing.git"
},
"bugs": {
"url": "https://github.com/gdsmith/jquery.easing/issues"
},
"main": "jquery.easing.js",
"directories": {
"example": "example"
},
"scripts": {
"open": "open-cli http://localhost:5000/example && npm start",
"start": "serve",
"lint": "eslint --report-unused-disable-directives --ext=js,md,html .",
"test": "echo \"Use tests in the examples directory\" && exit 1",
"build": "uglifyjs jquery.easing.js --compress --mangle -o jquery.easing.min.js"
},
"engines": {},
"dependencies": {},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-markdown": "^1.0.2",
"jquery": ">=1.3.0",
"open-cli": "^6.0.1",
"serve": "^11.3.2",
"uglify-js": "^2.6.2"
},
"keywords": [
"jquery-plugin",
"ecosystem:jquery"
],
"license": "BSD-3-Clause"
}