-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "snappy-food",
"version": "0.0.1",
"description": "Tastier than fast food, more convenient than sit-down",
"license": "MIT",
"type": "module",
"browser": "website/index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/snappyfood.git"
},
"homepage": "https://github.com/center-key/snappyfood",
"bugs": "https://github.com/center-key/snappyfood/issues",
"docs": "https://snappyfood.org",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"snappy",
"food"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"node": true
},
"scripts": {
"pretest": "jshint . --exclude-path .gitignore",
"test": "html-validator websites"
},
"dependencies": {
"dna-engine": "~3.1",
"web-ignition": "~2.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "~6.5",
"jshint": "~2.13",
"w3c-html-validator": "~1.6"
}
}