-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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/motd",
"description": "Messages of the day lib for Nuxt.js",
"version": "0.1.0",
"repository": "https://github.com/nuxt-community/motd",
"main": "dist/index.js",
"license": "MIT",
"author": "pimlie",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "bili --format cjs,es src/index.js",
"coverage": "codecov",
"lint": "eslint src test",
"release": "yarn lint && yarn test && yarn build && yarn standard-version",
"postrelease": "./scripts/postrelease.sh",
"test": "jest",
"validate": "ajv -s node_modules/motd-json/src/schema.json -d src/messages/*.json"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"motd-json": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@nuxtjs/eslint-config": "^2.0.0",
"ajv-cli": "^3.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"bili": "^4.8.1",
"codecov": "^3.6.1",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"jest-json-schema": "^2.1.0",
"nuxt": "^2.10.2",
"standard-version": "^7.0.1"
}
}