-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 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
{
"name": "motd-json",
"version": "0.1.1",
"description": "Library for retrieving a random motd from a json input with filter support",
"license": "MIT",
"author": "pimlie",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "bili --format cjs,es src/index.js",
"coverage": "codecov",
"lint": "eslint src test",
"release": "yarn lint && yarn test && yarn standard-version",
"test": "jest"
},
"files": [
"dist",
"src/schema.json"
],
"dependencies": {
"os-locale": "^4.0.0",
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@nuxtjs/eslint-config": "^2.0.0",
"ajv": "^6.10.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"bili": "^4.8.1",
"codecov": "^3.6.1",
"eslint": "^6.7.1",
"jest": "^24.9.0",
"standard-version": "^7.0.1"
},
"peerDependencies": {
"ajv": "^6.10.2"
}
}