-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "yalls",
"version": "0.7.0",
"description": "Yet Another Logging Library Specifically for y'all's logging pleasure",
"main": "index.js",
"scripts": {
"test": "npx mocha",
"lint": "npx eslint lib test index.js || true",
"lint:fix": "npx eslint --fix lib test index.js || true",
"build": "node scripts/build_docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanvanschenck/yalls.git"
},
"engines": {
"node": ">=12"
},
"author": "Jonathan D. B. Van Schenck",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathanvanschenck/yalls/issues"
},
"homepage": "https://github.com/jonathanvanschenck/yalls#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-node": "^11.1.0",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0"
},
"dependencies": {
"yaclc": "^1.1.0"
}
}