-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpkg.json
93 lines (93 loc) · 2.65 KB
/
pkg.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
{
"name": "@groceristar/groceristar-fetch",
"version": "2.1.3",
"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",
"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"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.1",
"babel-core": "^6.26.3",
"babel-jest": "^24.5.0",
"babel-plugin-module-resolver": "^3.2.0",
"coveralls": "^3.0.3",
"jest": "^24.1.0",
"jsonfile": "^5.0.0",
"nodemon": "^1.17.5",
"path": "^0.12.7",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^4.0.1",
"shx": "^0.3.2",
"standard": "^12.0.1",
"travis": "^0.1.1"
},
"dependencies": {
"@groceristar/sd-wrapper": "^2.0.8",
"dayjs": "^1.8.0",
"fs": "0.0.2",
"lodash": "^4.17.10",
"underscore": "^1.9.1",
"uuid": "3.3.2"
},
"description": "npm module required to fetch static data required for recipe search",
"xxx": "dist/index.cjs",
"main": "dist/index.cjs",
"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"
}
}