-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 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
51
52
53
54
55
56
57
58
{
"name": "jekyll-utils",
"version": "0.2.0",
"license": "MIT",
"description": "A collection of Jekyll utilility methods to generate eg. Jekyll permalinks and slugs",
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"homepage": "https://github.com/voxpelli/node-jekyll-utils",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-jekyll-utils.git"
},
"main": "index.js",
"scripts": {
"check:dependency-check": "dependency-check *.js 'lib/**/*.js' 'test/**/*.js' --no-dev",
"skip:check:docs": "documentation readme index.js -s \"API Usage\" --no-markdown-toc --diff-only",
"check:installed-check": "installed-check -i eslint",
"check:lint": "eslint .",
"check:types": "tsc",
"test:mocha": "NODE_ENV=test nyc --reporter=lcov --reporter text mocha test/**/*.spec.js",
"test": "run-p check:* && run-p test:*",
"build-docs": "documentation readme index.js -s \"API Usage\" --no-markdown-toc"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.1",
"@voxpelli/eslint-config": "^4.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"dependency-check": "^4.1.0",
"documentation": "^12.1.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.2.1",
"installed-check": "^3.0.0",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"typescript": "^3.5.3"
},
"dependencies": {
"strftime": "^0.10.0",
"xregexp": "^4.0.0"
}
}