-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "@nacelle/nacelle-lucky-orange-nuxt-module",
"version": "0.0.3",
"description": "Integrates Lucky Orange into your Nacelle Nuxt project",
"license": "ISC",
"contributors": [
{
"name": "Nacelle"
}
],
"main": "lib/module.js",
"repository": "https://github.com/getnacelle/nacelle-lucky-orange-nuxt-module",
"scripts": {
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ./lib",
"test": "jest ./lib"
},
"files": [
"lib"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.11.0",
"@types/jest": "^26.0.8",
"@vue/test-utils": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.2.2",
"eslint": "^7.5.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"vue": "^2.6.11",
"vue-jest": "^3.0.6",
"vue-template-compiler": "^2.6.11"
},
"lint-staged": {
"src/**/*.(js|ts)": [
"prettier --write",
"npm run lint"
],
"*{json, md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
}
}