forked from stanford-web-security/assign0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 820 Bytes
/
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
{
"name": "assign0",
"description": "assign0",
"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": {},
"devDependencies": {
"snazzy": "^8.0.0",
"standard": "^14.2.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/assign0.git"
},
"scripts": {
"lint": "standard | snazzy",
"lint-fix": "standard --fix | snazzy",
"test": "npm run lint && tape test/*.js | tap-spec"
}
}