-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "assign1",
"description": "assign1",
"version": "1.0.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/stanford-web-security/discussion/issues"
},
"dependencies": {
"application-config": "^1.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"got": "^9.6.0",
"minimist": "^1.2.0",
"open": "^6.4.0",
"remark": "^11.0.1",
"remark-external-links": "^5.0.0",
"remark-highlight.js": "^5.1.1",
"remark-html": "^10.0.0",
"remark-preset-lint-recommended": "^3.0.3"
},
"devDependencies": {
"nodemon": "^1.19.2",
"snazzy": "^8.0.0",
"standard": "^14.2.0",
"standard-markdown": "^5.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"homepage": "https://cs253.stanford.edu",
"keywords": [],
"license": "MIT",
"main": "server/index.js",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/stanford-web-security/assign1.git"
},
"scripts": {
"lint": "standard | snazzy && standard-markdown **/*.md",
"lint-fix": "standard --fix | snazzy && standard-markdown **/*.md --fix",
"start": "node server",
"test": "npm run lint && tape test/*.js | tap-spec",
"watch": "nodemon --ext js,json,css,ejs,md -- --no-open"
}
}