-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 937 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
35
36
37
{
"name": "static-standards",
"version": "1.0.0",
"description": "A HarpJS static site generator built to output development guidelines.",
"private": "true",
"scripts": {
"start": "harp server",
"dev": "harp server & browser-sync start --config bs-config.js",
"test": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgautsch/static-standards.git"
},
"keywords": [
"Javascript",
"CSS",
"HTML",
"HarpJS"
],
"author": "Dan Gautsch",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgautsch/static-standards/issues"
},
"homepage": "https://github.com/dgautsch/static-standards#readme",
"devDependencies": {
"browser-sync": "^2.12.8",
"eslint": "^2.10.2",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2"
},
"dependencies": {
"harp": "^0.20.3"
}
}