-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
65
66
67
68
69
70
71
72
73
{
"name": "nuxt-feature-toggle",
"description": "Feature toggle module for Nuxt.js",
"version": "1.2.2",
"main": "lib/module.js",
"license": "MIT",
"keywords": [
"nuxt",
"nuxtjs",
"toggle",
"feature-toggle",
"feature-switch"
],
"scripts": {
"lint": "eslint lib test",
"lint-fix": "eslint --fix lib test",
"test": "npm run lint && jest",
"preview": "standard-version --dry-run",
"release": "standard-version && git push --follow-tags"
},
"repository": "https://github.com/stephenkr/nuxt-feature-toggle",
"contributors": [
{
"name": "Stephen kerr <[email protected]>"
}
],
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"transform": {
"^.+.vue$": "vue-jest",
"^.+.js$": "babel-jest"
}
},
"dependencies": {
"vue": "^2.6.10",
"yn": "^5.0.0"
},
"devDependencies": {
"@babel/core": "npm:@babel/core",
"@babel/preset-env": "^7.4.4",
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "npm:@babel/core",
"babel-eslint": "^8.2.1",
"babel-jest": "^24.8.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": ">=16.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": ">=2.14.0",
"eslint-plugin-jest": "26.1.0",
"eslint-plugin-node": ">=7.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-vue": "^8.4.1",
"jest": "^24.8.0",
"prettier": "1.14.3",
"standard-version": "8.0.1",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
}
}