forked from RobLoach/jquery-once
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jquery-once",
"title": "jQuery Once",
"description": "Act on jQuery elements only once.",
"version": "2.1.1",
"keywords": [
"jquery",
"jquery-plugin"
],
"homepage": "https://github.com/RobLoach/jquery-once",
"author": "Rob Loach (http://github.com/RobLoach)",
"maintainers": [
"Rob Loach (https://github.com/RobLoach)"
],
"main": "jquery.once.js",
"contributors": [
"JohnAlbin (https://github.com/JohnAlbin)",
"Rob Loach <robloach@gmail.com> (https://github.com/RobLoach)",
"theodoreb (https://github.com/theodoreb)"
],
"repository": {
"type": "git",
"url": "https://github.com/RobLoach/jquery-once.git"
},
"bugs": {
"url": "https://github.com/RobLoach/jquery-once/issues"
},
"license": "(GPL-2.0 OR MIT)",
"licenses": [
{
"type": "GPL-2.0",
"url": "http://opensource.org/licenses/gpl-2.0.php"
},
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"dependencies": {
"jquery": "*"
},
"devDependencies": {
"jsdoc-to-markdown": "^1.2.0",
"jsdom": "~6.5.1",
"mocha": "~2.3.3",
"mocha-jsdom": "~1.0.0",
"semistandard": "^7.0.2",
"uglify-js": "~2.4.24"
},
"scripts": {
"posttest": "semistandard",
"test": "mocha test/test.js",
"docs": "jsdoc2md jquery.once.js > API.md",
"build": "uglifyjs jquery.once.js -o jquery.once.min.js --comments --source-map jquery.once.min.js.map --mangle",
"package": "npm install && npm run test && npm run docs && npm run build",
"coverage": "npm i istanbul && istanbul cover test",
"coveralls": "npm run coverage && npm i coveralls && cat ./coverage/lcov.info | coveralls"
},
"files": [
"jquery.once.js",
"jquery.once.min.js",
"jquery.once.min.js.map"
],
"browser": "./jquery.once.min.js",
"browserPackage": {
"files": [
"jquery.once.js",
"jquery.once.min.js",
"jquery.once.min.js.map"
]
}
}