-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
110 lines (110 loc) · 3.04 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "nuxt-neo",
"version": "5.0.1",
"description": "A nuxt.js module that implements a universal api layer, same-way compatible between server and client side.",
"keywords": [
"nuxt",
"vue",
"node",
"javascript",
"module",
"api",
"middleware",
"service",
"universal",
"neo",
"controller",
"action",
"asyncdata",
"fetch"
],
"homepage": "https://ezypeeze.github.io/nuxt-neo",
"repository": {
"type": "git",
"url": "https://github.com/ezypeeze/nuxt-neo"
},
"bugs": {
"url": "https://github.com/ezypeeze/nuxt-neo/issues"
},
"main": "lib/module.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"scripts": {
"dev": "HOST=localhost PORT=3000 nuxt dev -c ./tests/fixtures/nuxt.config.js",
"test": "ava",
"lint": "eslint --ext '.js,.ts,.vue' lib tests types",
"coverage": "c8 --reporter=lcov ava",
"deploy:docs": "PACKAGE_VERSION=$(cat package.json|grep version|head -1|awk -F: '{ print $2 }'|sed 's/[\", ]//g') && ./deploy_docs.sh $PACKAGE_VERSION"
},
"author": "Pedro Pereira <pedromdspereira.93@gmail.com>",
"contributors": [
{
"name": "Pedro Pereira <pedromdspereira.93@gmail.com>"
},
{
"name": "Rafał Chłodnicki <rchl2k@gmail.com>"
}
],
"license": "MIT",
"pre-commit": [
"lint",
"test"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"body-parser": "^1.20.1",
"express": "^4.18.2",
"path-to-regexp": "^6.2.1"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"ava": "^3.15.0",
"axios": "^0.27.1",
"browserslist": "^4.21.4",
"c8": "^7.12.0",
"codecov": "^3.8.2",
"core-js": "^3.26.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-loader": "^4.0.2",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^8.7.1",
"esm": "^3.2.25",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"nuxt": "^2.15.8",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"querystring": "^0.2.1",
"standard-version": "^9.3.2",
"sure": "^0.0.3",
"typescript": "^4.9.3"
},
"ava": {
"cache": true,
"concurrency": 1,
"timeout": "30s",
"failFast": true,
"failWithoutAssertions": false,
"verbose": true,
"require": [
"esm",
"./tests/setup/global.js"
],
"files": [
"tests/*.test.js"
]
}
}