-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 907 Bytes
/
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
{
"type": "module",
"name": "bare-script",
"version": "3.0.14",
"description": "BareScript; a lightweight scripting and expression language",
"keywords": [
"expression",
"language",
"script"
],
"homepage": "https://github.com/craigahobbs/bare-script#readme",
"bugs": "https://github.com/craigahobbs/bare-script/issues",
"license": "MIT",
"author": {
"name": "Craig A. Hobbs",
"email": "[email protected]",
"url": "https://github.com/craigahobbs"
},
"bin": {
"bare": "./bin/bare.js",
"baredoc": "./bin/baredoc.js"
},
"files": [
"lib/**/*"
],
"scripts": {
"test": "node --test test/"
},
"dependencies": {
"schema-markdown": "~1.2"
},
"devDependencies": {
"c8": "~10.1",
"eslint": "~9.15",
"jsdoc": "~4.0"
}
}