-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
156 lines (156 loc) · 3.72 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "dominos",
"version": "3.3.1",
"description": "node js API for Domino's pizza",
"exports": {
".": "./index.js",
"./utils/urls.js": "./utils/urls.js"
},
"type": "module",
"scripts": {
"test": "npm i && c8 -r lcov -r html node test/CI.js && c8 report",
"precommit": "echo '::::PLEASE MAKE SURE TESTS PASS BY RUNNING:::: npm test OR node test/CI.js'",
"coverage": "echo 'See your coverage report at http://localhost:8080' && node-http-server port=8080 root=./coverage/",
"start": "npm i && node example/commandline-pizza/dominos-commandline-pizza.js"
},
"engines" : {
"node" : ">=14.0.0"
},
"pre-commit": [
"precommit"
],
"directories": {
"example": "example",
"test": "test",
"coverage": "coverage"
},
"dependencies": {
"js-base64-file": "^2.0.3",
"node-fetch": "^2.6.1",
"strong-type": "^0.1.6",
"vanilla-test": "^1.4.7",
"xml2js": "^0.4.23"
},
"devDependencies": {
"c8": "^7.6.0",
"node-http-server": "^8.1.3",
"pre-commit": "^1.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/RIAEvangelist/node-dominos-pizza-api.git"
},
"keywords": [
"Dominos",
"Domino's",
"Pizza",
"API",
"Pie",
"PizzaPI"
],
"author": {
"name": "Brandon Miller",
"email": "[email protected]",
"url": "https://github.com/RIAEvangelist"
},
"contributors": [
{
"name": "Julian Hartline",
"email": "[email protected]",
"url": "https://github.com/julianh2o"
},
{
"name": "Madeline Cameron",
"email": "[email protected]",
"url": "http://madelinecameron.net"
},
{
"name": "Patrick Dube",
"email": "[email protected]",
"url": "https://github.com/pdube"
},
{
"name": "Ray Farias",
"url": "https://github.com/sgnl"
},
{
"name": "Adrian Sida",
"url": "https://github.com/asida18"
},
{
"name": "Ryan blhack",
"email": "[email protected]",
"url": "https://github.com/blhack"
},
{
"name": "Eric Wong",
"url": "https://github.com/K4orta"
},
{
"name": "Mark Amery",
"email": "[email protected]",
"url": "https://github.com/ExplodingCabbage"
},
{
"name": "William Volin",
"url": "https://github.com/Eein"
},
{
"name": "Maxime Lafarie",
"url": "https://github.com/maximelafarie"
},
{
"name": "Victor Quinn",
"email": "[email protected]",
"url": "https://github.com/victorquinn"
},
{
"name": "Spencer Malekian",
"url": "https://github.com/smalekian"
},
{
"name": "Kevin Grube",
"url": "https://github.com/k-grube"
},
{
"name": "Hiroshi Fukada",
"email": "[email protected]",
"url": "https://github.com/hfukada"
},
{
"name": "The Gitter Badger",
"email": "[email protected]",
"url": "https://github.com/gitter-badger"
},
{
"name": "Matt Cotter",
"url": "https://github.com/Machyne"
},
{
"name": "Matt Steele",
"url": "https://github.com/mattdsteele"
},
{
"name": "Patrick Collins",
"url": "https://github.com/PatrickAlphaC"
},
{
"name": "lastraum",
"url": "https://github.com/lastraum"
},
{
"name":"Robbie Averill",
"email":"[email protected]",
"url":"https://github.com/robbieaverill"
}
],
"funding": {
"type": "GitHub",
"url": "https://github.com/sponsors/RIAEvangelist"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/RIAEvangelist/node-dominos-pizza-api/issues"
},
"homepage": "https://github.com/RIAEvangelist/node-dominos-pizza-api"
}