forked from AustinCodingAcademy/javascript-workbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "javascript-workbook",
"version": "1.0.0",
"description": "Austin Coding Academy - JavaScript Workbook",
"repository": {
"type": "git",
"url": "git+https://github.com/AustinCodingAcademy/javascript-workbook.git"
},
"scripts": {
"lint": "htmllint {*.html,./**/*.html} && stylelint ./**/*.css && eslint .",
"test": "mocha --no-timeouts",
"start": "cd . && http-server -c-1",
"javascripting": "javascripting",
"functional-javascript": "functional-javascript"
},
"author": "Kevin Colten",
"bugs": {
"url": "https://github.com/AustinCodingAcademy/javascript-workbook/issues"
},
"homepage": "https://github.com/AustinCodingAcademy/javascript-workbook#readme",
"dependencies": {
"colors": "^1.4.0",
"eslint": "^3.19.0",
"functional-javascript-workshop": "^1.0.6",
"htmllint-cli": "github:kevincolten/htmllint-cli",
"http-server": "^0.11.1",
"javascripting": "^2.6.1",
"jsdom": "^11.6.2",
"mocha": "^5.0.0",
"postcss-html": "^0.34.0",
"stylelint": "^7.13.0"
}
}