-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 1.71 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
73
74
75
76
77
{
"name": "nuxt-feed-yandex-market",
"version": "1.0.0",
"description": "A Nuxt.js module that generates an YML file. Example for Yandex.Market",
"contributors": [
{
"name": "yesworld",
"email": "a.yesworld@gmail.com"
}
],
"scripts": {
"lint": "eslint --fix index.js",
"test": "npm run lint && jest -u --detectOpenHandles"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"dependencies": {
"async-cache": "^1.1.0",
"fs-extra": "^10.0.0",
"yandex-market-language": "^0.4.1",
"moment": "^2.29.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^25.5.4",
"nuxt": "^2.15.7",
"request-promise-native": "^1.0.5"
},
"license": "MIT",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/fixture",
"/examples/"
],
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/yesworld/nuxt-feed-yandex-market.git"
},
"bugs": {
"url": "https://github.com/yesworld/nuxt-feed-yandex-market/issues"
},
"keywords": [
"nuxtjs",
"wrapper",
"feed",
"yandex",
"яндекс",
"market",
"маркет",
"generator",
"yml",
"json"
]
}