-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
59 lines (59 loc) · 1.47 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
{
"author": "Sascha Depold <[email protected]> (http://depold.com)",
"name": "jquery-rss",
"description": "An easy-to-use rss plugin for jquery with templating.",
"version": "4.3.0",
"homepage": "https://github.com/sdepold/jquery-rss",
"keywords": [
"rss",
"jquery",
"ender"
],
"ender": "noop",
"repository": {
"type": "git",
"url": "git://github.com/sdepold/jquery-rss.git"
},
"contributors": [
{
"name": "Sascha Depold",
"email": "[email protected]"
},
{
"name": "Steffen Schröder",
"email": "[email protected]"
}
],
"main": "src/jquery.rss.js",
"scripts": {
"test": "npm run bundle && mocha test/jquery.rss.test.js -t 10000",
"bundle": "node utils/bundle",
"lint": "eslint src/**/*.js spec/**/*.js",
"prepack": "npm run version:sync && npm run bundle",
"version:sync": "node utils/sync-version",
"serve": "static &",
"watch": "npm run serve && watch 'npm run bundle' ./src"
},
"engines": {
"node": ">=v0.4.8"
},
"dependencies": {
"vanilla-rss": "^1.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.4.0",
"jquery": "^3.4.0",
"jsdom": "^15.1.1",
"mocha": "^6.2.0",
"moment": "^2.14.1",
"node-fetch": "^2.6.0",
"node-static": "^0.7.11",
"rollup": "^1.23.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"sinon": "^7.5.0",
"watch": "^1.0.2"
},
"license": "MIT"
}