-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
100 lines (100 loc) · 2.94 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@groceristar/groceristar-fetch",
"version": "2.2.7",
"scripts": {
"test": "jest",
"test:prod": "standard && jest",
"watch": "nodemon src/index.js",
"play:g": "nodemon src/projects/GroceriStar/play.js",
"play:s": "nodemon src/projects/Search/play.js",
"play:r": "nodemon src/projects/ChickenKyiv/play.js",
"play:l": "nodemon src/projects/GS-loopback/play.js",
"play:u": "nodemon src/projects/UnitConvertion/play.js",
"play:sh": "nodemon src/projects/Showcase/play.js",
"test:gs": "jest src/projects/GroceriStar/groceristar.test.js && jest src/projects/GroceriStar/staticFiles.test.js",
"test:big": "jest src/projects/GroceriStar/getGroceriesWithDepIngKey.test.js",
"test:index": "jest src/index.test.js",
"code-fix": "standard --fix",
"build": "babel src -d dist",
"lint": "standard",
"bundle": "rollup -c",
"dev": "rollup -c -w",
"build:rollup": "npm run clean && npm run bundle",
"clean": "shx rm -rf ./coverage && shx rm -rf ./dist",
"snyk-protect": "snyk protect",
"prepublish": "yarn run snyk-protect",
"debug:s": "rollup -c && node ./debug/debugShowcase.js"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.16.11",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "28.1.1",
"babel-plugin-module-resolver": "4.0.0",
"coveralls": "3.1.1",
"jest": "28.1.1",
"jsonfile": "5.0.0",
"nodemon": "2.0.2",
"path": "0.12.7",
"rollup": "2.1.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-resolve": "5.2.0",
"shx": "0.3.2",
"standard": "16.0.4",
"travis": "0.1.1"
},
"dependencies": {
"@groceristar/sd-wrapper": "^4.11.3",
"dayjs": "^1.8.15",
"fs": "0.0.2",
"lodash": "^4.17.17",
"raven-js": "^3.27.1",
"snyk": "^1.290.1",
"underscore": "^1.9.1",
"uuid": "^3.3.2"
},
"description": "npm module required to fetch static data required for recipe search",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.iife.js",
"files": [
"/src/projects",
"/src/helper.js",
"/src/index.js",
"/src/index.test.js",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GroceriStar/groceristar-fetch"
},
"keywords": [
"ingredients",
"allergies",
"diet",
"cuisines",
"nutritions",
"recipes",
"meal calendar",
"grocery list",
"measurements"
],
"author": "Nishith Chauhan",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/GroceriStar/groceristar-fetch/issues"
},
"homepage": "https://groceristar.github.io/groceristar-fetch/",
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"publishConfig": {
"access": "public"
},
"snyk": true
}