-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 853 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
{
"name": "blog",
"version": "1.0.0",
"description": "Time to roll my own. So long, WordPress!",
"repository": {
"type": "git",
"url": "git+https://github.com/c-d-lewis/blog.git"
},
"scripts": {
"build": "./build.sh",
"start": "npm run build && http-server"
},
"keywords": [],
"author": "Chris Lewis",
"bugs": {
"url": "https://github.com/c-d-lewis/blog/issues"
},
"homepage": "https://github.com/c-d-lewis/blog#readme",
"devDependencies": {
"@chris-lewis/eslint-config": "^1.0.3",
"feed-validator": "^1.1.1",
"http-server": "^14.1.1",
"slugify": "^1.4.0",
"xml2js": "^0.5.0"
},
"eslintConfig": {
"extends": "@chris-lewis/eslint-config",
"globals": {
"fabricate": "readonly",
"Colors": "readonly",
"Utils": "readonly",
"Theme": "readonly"
}
}
}