forked from AustinCodingAcademy/web-workbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 925 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
{
"name": "web-workbook",
"version": "1.0.0",
"description": "Austin Coding Academy - Web Workbook",
"repository": {
"type": "git",
"url": "git+https://github.com/AustinCodingAcademy/web-workbook.git"
},
"scripts": {
"lint": "htmllint {*.html,./**/*.html} && stylelint ./**/*.css && eslint .",
"start": "cd . && http-server -c-1",
"test": "mocha",
"javascripting": "javascripting"
},
"author": "Kevin Colten",
"license": "ISC",
"bugs": {
"url": "https://github.com/AustinCodingAcademy/web-workbook/issues"
},
"homepage": "https://github.com/AustinCodingAcademy/web-workbook#readme",
"devDependencies": {
"eslint": "^3.19.0",
"htmllint-cli": "github:kevincolten/htmllint-cli",
"http-server": "^0.9.0",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"stylelint": "^7.7.1"
},
"dependencies": {
"javascripting": "^2.6.1",
"jquery": "^3.2.1"
}
}