-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.67 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
63
64
{
"name": "nuxt-unleash",
"version": "1.0.4",
"description": "Nuxt.js module to use Unleash toggle feature services",
"keywords": [
"nuxt",
"nuxtjs",
"unleash",
"feature-flags",
"module",
"feature",
"plugin"
],
"homepage": "https://github.com/conejerock/nuxt-unleash",
"bugs": {
"url": "https://github.com/conejerock/nuxt-unleash/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/conejerock/nuxt-unleash.git"
},
"license": "MIT",
"author": "Juanjo Conejero <juanjoconejero@gmail.com>",
"main": "./dist/module.js",
"types": "./dist/index.d.ts",
"typings": "./index.d.ts",
"files": [
"dist",
"templates",
"index.d.ts"
],
"scripts": {
"build": "siroc build && yarn build:types",
"build:types": "scripts/types.sh",
"dev": "nuxt dev test/fixture/ok",
"lint": "eslint --ext .js,.ts,.vue ./src",
"prepublishOnly": "yarn build",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
"test": "yarn jest"
},
"dependencies": {
"axios": "^0.26.0",
"colorette": "^2.0.16",
"consola": "^2.15.3"
},
"devDependencies": {
"@babel/preset-typescript": "latest",
"@microsoft/api-extractor": "^7.19.4",
"@nuxt/test-utils": "latest",
"@nuxt/types": "^2.15.8",
"@nuxtjs/eslint-config-typescript": "latest",
"@sucrase/jest-plugin": "^2.2.0",
"@types/chalk": "^2.2.0",
"@types/jest": "latest",
"@types/node": "latest",
"del": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt": "latest",
"playwright": "^1.19.2",
"siroc": "latest",
"standard-version": "latest"
}
}