-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "scouts-elections",
"version": "1.0.0",
"description": "This static website is a program that lets our Scouts group create Elections to determine which leaders will be in our subgroups.",
"main": "js/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"serve": "reload",
"lint-html": "html-validate \"{,!(node_modules)/**/}*.html\"",
"lint-javascript": "eslint ./",
"lint-javascript-fix": "eslint ./ --fix",
"test-javascript": "tsc -p jsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/205stelzear/elections.git"
},
"author": "Guillaume Marcoux",
"license": "MIT",
"bugs": {
"url": "https://github.com/205stelzear/elections/issues"
},
"homepage": "https://github.com/205stelzear/elections#readme",
"devDependencies": {
"@types/bootstrap": "^4.5.0",
"@types/clipboard": "^2.0.1",
"@types/file-saver": "^2.0.1",
"@types/jquery": "^3.5.2",
"@types/js-cookie": "^2.2.6",
"@types/lz-string": "^1.3.34",
"eslint": "^7.32.0",
"html-validate": "^5.4.1",
"popper.js": "^1.16.1",
"reload": "^3.2.0",
"typescript": "^4.4.2"
}
}