-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 KB
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
{
"name": "fetch101",
"version": "1.1.0",
"description": "Examples of fetch",
"repository": {
"type": "git",
"url": "git+https://github.com/portsoc/fetch101.git"
},
"scripts": {
"start": "http-server",
"examples": "./node_modules/.bin/http-server examples; "
},
"author": "SoftEng <softeng@port.ac.uk>",
"contributors": [
"Rich Boakes <rich@boakes.org>",
"Jacek Kopecky <jacek@jacek.cz>",
"Matt Dennis <m@matt.qa>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/portsoc/fetch101/issues"
},
"homepage": "https://github.com/portsoc/fetch101#readme",
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-portsoc": "^0.8.1",
"http-server": "^14.1.0"
},
"eslintConfig": {
"extends": "portsoc",
"root": true,
"env": {
"browser": true
},
"globals": {
"QUnit": "readonly",
"showMessage": "writable",
"showList": "writable",
"startShowingMessage": "writable",
"handleError": "writable",
"drawBox": "writable"
}
}
}