forked from metalsmith/permalinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 987 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
{
"name": "metalsmith-permalinks",
"description": "A metalsmith plugin for permalinks.",
"repository": "git://github.com/segmentio/metalsmith-permalinks.git",
"version": "2.0.0",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"pretest": "npm run lint",
"test": "mocha test",
"lint": "eslint --cache --fix .",
"dev": "nodemon --exec 'npm test'",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"debug": "^4.1.0",
"moment": "^2.5.1",
"slugify": "^1.3.1",
"substitute": "https://github.com/segmentio/substitute/archive/0.1.0.tar.gz"
},
"devDependencies": {
"assert-dir-equal": "^1.1.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"metalsmith": "^2.3.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"rimraf": "^2.4.1",
"transliteration": "^1.6.6"
}
}