-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.73 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
59
60
61
62
{
"name": "@aceforth/nuxt-netlify",
"version": "1.1.0",
"description": "Dynamically generate _headers and _redirects files for Netlify in your Nuxt.js projects.",
"main": "lib/index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "yarn lint && jest",
"lint": "eslint --ext .js lib test",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juliomrqz/nuxt-netlify.git"
},
"author": "Julio Marquez <opensource@marquez.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/juliomrqz/nuxt-netlify/issues"
},
"homepage": "https://marquez.co/docs/nuxt-netlify/?utm_source=npm&utm_medium=readme&utm_campaign=nuxt-netlify",
"dependencies": {
"consola": "^2.15.3",
"fs-extra": "^9.1.0",
"lodash.template": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"conventional-changelog-cli": "2.1.1",
"eslint": "7.21.0",
"eslint-config-dev": "2.0.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-vue": "7.6.0",
"husky": "4.3.8",
"immutable": "4.0.0-rc.12",
"jest": "26.6.3",
"sharp": "0.27.2",
"upath": "2.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"precommit": "lint-staged"
}
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"engines": {
"node": ">=v10.24.0"
}
}