-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
40 lines (40 loc) · 895 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
{
"name": "jquery-extendext",
"version": "1.0.0",
"description": "jQuery.extend with configurable behaviour for arrays",
"authors": [
{
"name": "Damien \"Mistic\" Sorel",
"email": "contact@git.strangeplanet.fr",
"homepage": "http://www.strangeplanet.fr"
}
],
"main": "jquery-extendext.js",
"files": [
"jquery-extendext.js"
],
"dependencies": {
"jquery": ">=1.9.1"
},
"devDependencies": {
"jest": "^27.2.0",
"jest-expect-message": "^1.0.2"
},
"keywords": [
"jQuery",
"extend",
"arrays"
],
"license": "MIT",
"homepage": "https://github.com/mistic100/jQuery.extendext",
"repository": {
"type": "git",
"url": "git://github.com/mistic100/jQuery.extendext.git"
},
"bugs": {
"url": "https://github.com/mistic100/jQuery.extendext/issues"
},
"scripts": {
"test": "jest tests/*.spec.js"
}
}