This repository was archived by the owner on Nov 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
{
"name": "contentful-metalsmith",
"description": "A Metalsmith's plugin to get content from Contentful",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/contentful-labs/contentful-metalsmith.git"
},
"author": "Contentful GmbH",
"license": "MIT",
"engines": {
"node": ">=4"
},
"dependencies": {
"contentful": "^3.5.0",
"debug": "^2.6.3",
"lodash.pick": "^4.4.0",
"lodash.template": "^4.4.0",
"slug-component": "^1.1.0"
},
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.12",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^6.0.0-beta.3",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"handlebars": "^4.0.5",
"metalsmith": "^2.2.0",
"metalsmith-layouts": "^1.6.5",
"nyc": "^8.1.0",
"proxyquire": "^1.7.10",
"semantic-release": "^4.3.5"
},
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint \"**/*.js\"",
"test": "npm run lint && nyc ava **/*.spec.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}