-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "@nuxtjs/moment",
"version": "1.6.1",
"description": "Efficient Moment.js integration for Nuxt.js",
"repository": "nuxt-community/moment-module",
"license": "MIT",
"contributors": [
"Pooya Parsa <[email protected]>",
"Alexander Lichter <[email protected]>",
"Ricardo Gobbo de Souza <[email protected]>"
],
"main": "lib/module.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types/*.d.ts"
],
"scripts": {
"lint": "eslint --ext .js,.vue .",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"moment": "^2.25.3",
"moment-locales-webpack-plugin": "^1.2.0",
"moment-timezone": "^0.5.31",
"moment-timezone-data-webpack-plugin": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"moment-fquarter": "latest",
"moment-strftime": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}