-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.13 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ritter-jekyll",
"version": "5.1.0",
"description": "The Ritter Jekyll Experience",
"bin": "lib/index.js",
"files": [
"lib/"
],
"keywords": [
"ritter",
"jekyll"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ritterim/ritter-jekyll"
},
"scripts": {
"build": "babel -d ./ ./src",
"coverage": "jest --coverage",
"lint": "eslint src tests",
"test": "jest",
"test:watch": "jest --watch",
"integration-test": "npm run build && node ./lib/index.js",
"validate": "npm run lint && npm test"
},
"author": {
"name": "Ritter Insurance Marketing",
"url": "https://github.com/ritterim"
},
"pre-commit": [
"validate"
],
"dependencies": {
"front-matter": "^2.1.2",
"globby": "^8.0.1",
"winston": "^2.2.0",
"winston-timer": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^8.1.0",
"babel-plugin-transform-function-bind": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"eslint": "^6.5.1",
"jest": "^19.0.2",
"pre-commit": "^1.1.2"
}
}