-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 958 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
35
36
37
38
39
40
41
42
43
44
{
"name": "@nuxtjs/guess-module",
"version": "0.1.3",
"description": "Guess.js module for Nuxt.js",
"license": "MIT",
"contributors": [
{
"name": "Clark Du <[email protected]>"
}
],
"main": "lib/module.js",
"repository": "https://github.com/nuxt-community/guess-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt example",
"lint": "yarn eslint lib test",
"test": "jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"lib/plugin.js"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"guess-webpack": "^0.4.22"
},
"devDependencies": {
"@nuxtjs/eslint-config": "6.0.0",
"babel-eslint": "10.1.0",
"codecov": "3.8.1",
"eslint": "7.21.0",
"jest": "26.6.3",
"nuxt": "2.15.3",
"standard-version": "9.1.1"
}
}