-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "@nuxtjs/feed",
"version": "2.0.0",
"description": "Feed module enables everyone to have RSS, Atom and Json.",
"keywords": [
"nuxtjs",
"nuxt",
"feed",
"blog",
"rss",
"atom",
"json"
],
"license": "MIT",
"contributors": [
"Alexander Lichter <[email protected]>"
],
"main": "lib/module.js",
"repository": "nuxt-community/feed-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture",
"generate": "nuxt generate test/fixture",
"lint": "eslint --ext .js,.vue lib test",
"test": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"files": [
"lib"
],
"dependencies": {
"async-cache": "^1.1.0",
"consola": "^2.12.1",
"feed": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
}
}