-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 1.41 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": "@nuxtjs/speedcurve",
"version": "1.1.2",
"description": "Speedcurve LUX integration for Nuxt",
"repository": "nuxt-community/speedcurve-module",
"license": "MIT",
"contributors": [
{
"name": "Josh Deltener <hecktarzuli@gmail.com>"
}
],
"main": "lib/module.js",
"files": [
"lib"
],
"scripts": {
"dev": "nuxt examples/universal",
"docs": "nuxt docs",
"lint": "eslint --ext .js,.vue .",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest",
"test-full-static": "nuxt generate examples/full-static && nuxt start examples/full-static",
"test-spa": "nuxt generate examples/spa",
"test-static": "nuxt generate examples/universal",
"test-universal": "nuxt build examples/universal && nuxt start examples/universal"
},
"dependencies": {
"semver": "^7.3.2"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxt/content-theme-docs": "^0.5.4",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}