-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 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
48
49
50
51
52
{
"name": "@nuxtjs/dayjs",
"version": "1.4.1",
"description": "The best way for use Day.js easily in your Nuxt.js project.",
"author": {
"name": "Takuma HANATANI(potato4d)"
},
"keywords": [
"vue",
"nuxt",
"nuxt.js"
],
"main": "lib/module.js",
"types": "index.d.ts",
"license": "MIT",
"repository": "https://github.com/nuxt-community/dayjs-module",
"scripts": {
"dev": "nuxt test/fixture",
"test": "NODE_ENV=test jest",
"test:system": "NODE_ENV=test jest --testRegex \"/test/system/(.+)\\.test\\.js$\"",
"test:coverage": "NODE_ENV=test yarn test --coverage",
"format": "prettier './**/*.{js,ts,json,vue}' --write"
},
"devDependencies": {
"@nuxt/types": "2.15.8",
"@nuxtjs/module-test-utils": "1.6.3",
"@types/consola": "1.0.0",
"@types/jest": "27.5.2",
"@types/jsdom": "21.1.7",
"@types/node": "16.18.119",
"@types/puppeteer": "5.4.7",
"all-contributors-cli": "6.24.0",
"codecov": "3.8.3",
"jest": "27.5.1",
"nuxt": "2.16.3",
"prettier": "2.8.8",
"puppeteer": "15.5.0",
"standard-version": "9.5.0",
"ts-jest": "27.1.5",
"typescript": "5.0.4"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"lib/**/*.{js,jsx}"
]
},
"dependencies": {
"consola": "^2.10.1",
"dayjs": "^1.10.4"
}
}