-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "@nuxt/test-utils",
"version": "0.2.2",
"description": "Test utilities for Nuxt.js",
"repository": "nuxt-community/module-test-utils",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"jest-preset.js"
],
"scripts": {
"build": "siroc build",
"lint": "eslint --ext .ts,.js,.vue .",
"release": "yarn test && standard-version && yarn build && git push --follow-tags && npm publish",
"test": "yarn lint && yarn test:unit && yarn test:e2e",
"test:e2e": "jest test/e2e --forceExit",
"test:unit": "jest test/unit --forceExit"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"babel-jest": "^27.0.6",
"consola": "^2.15.3",
"defu": "^5.0.0",
"listhen": "^0.2.4",
"ohmyfetch": "^0.2.0",
"ufo": "^0.7.7"
},
"devDependencies": {
"@nuxt/types": "^2.15.7",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.0",
"codecov": "^3.8.2",
"core-js": "^3.15.2",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"nuxt-edge": "^2.16.0-27095053.356de80e",
"playwright": "^1.12.3",
"siroc": "^0.12.0",
"standard-version": "^9.3.0",
"typescript": "^4.3.5"
}
}