forked from ritterim/rimdev-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·29 lines (29 loc) · 911 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
{
"name": "rimdev",
"version": "2.0.0",
"private": true,
"description": "The Ritter Insurance Marketing development team blog, hosted at https://rimdev.io/.",
"scripts": {
"test": "markdown-proofing _posts/*.md",
"proof": "markdown-proofing --color --no-throw --",
"proof:all": "npm run test -- --no-throw",
"proof:latest": "node proofScripts.js latest _posts/*.md",
"proof:changed": "node proofScripts.js git-index-and-uncommitted _posts/*.md",
"proof:index": "node proofScripts.js git-index _posts/*.md",
"proof:uncommitted": "node proofScripts.js git-uncommitted _posts/*.md"
},
"keywords": [
"rimdev",
"blog"
],
"author": "rimdev",
"repository": {
"type": "git",
"url": "https://github.com/ritterim/ritterim.github.io.git"
},
"license": "UNLICENSED",
"devDependencies": {
"markdown-proofing": "latest",
"shelljs": "^0.7.0"
}
}