forked from AustinCodingAcademy/javascript-workbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 795 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 795 Bytes
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
{
"name": "javascript-workbook",
"version": "2.0.0",
"description": "Workbook for Austin Coding Academy Javascript Course",
"repository": {
"type": "git",
"url": "git+https://github.com/AustinCodingAcademy/javascript-workbook.git"
},
"author": "Kevin Colten",
"scripts": {
"test": "mocha",
"start": "cd . && http-server -c-1"
},
"bugs": {
"url": "https://github.com/AustinCodingAcademy/javascript-workbook/issues"
},
"homepage": "https://github.com/AustinCodingAcademy/javascript-workbook#readme",
"dependencies": {
"colors": "^1.1.2"
},
"devDependencies": {
"eslint": "^3.12.2",
"htmllint-cli": "^0.0.5",
"http-server": "^0.9.0",
"jsdom": "^9.4.2",
"mocha": "^2.4.5",
"nock": "^8.0.0",
"stylelint": "^7.7.1"
}
}