forked from nuxt-community/moment-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "@nuxtjs/moment",
"version": "1.4.0",
"description": "Efficient Moment.js integration for Nuxt.js",
"repository": "nuxt-community/moment-module",
"license": "MIT",
"contributors": [
"Pooya Parsa <[email protected]>",
"Alexander Lichter <[email protected]>"
],
"files": [
"lib",
"types/*.d.ts"
],
"main": "lib/module.js",
"types": "types/index.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.24.0",
"moment-locales-webpack-plugin": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"codecov": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"moment-fquarter": "latest",
"moment-strftime": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}