-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 1.33 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
{
"name": "@leandromatos/nuxt-cookie",
"version": "0.0.1",
"repository": "https://github.com/leandromatos/nuxt-cookie",
"license": "MIT",
"contributors": [
{
"name": "Leandro Matos <[email protected]>"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example",
"test": "yarn code-lint && jest",
"code-lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"code-lint-fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"commit": "commit",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"dependencies": {
"cookie": "^0.4.1",
"nuxt": "^2.14.7"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt-cli": "^11.0.0",
"@leandromatos/eslint-config": "^0.0.14",
"@leandromatos/prettier-config": "^0.0.8",
"@nuxtjs/module-test-utils": "^1.6.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.12.1",
"eslint-loader": "^4.0.2",
"got": "^11.8.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"standard-version": "^9.0.0"
},
"publishConfig": {
"access": "public"
}
}