-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1005 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
38
39
40
41
42
{
"name": "gallinago",
"version": "0.8.2",
"description": "Gallinago is a NodeJS based package designed to help with the running and testing of CLIs.",
"main": "src/index.js",
"type": "module",
"author": "Owen Buckley <[email protected]>",
"license": "MIT",
"keywords": [
"testing",
"nodejs",
"CLI"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thescientist13/gallinago.git"
},
"files": [
"src/"
],
"engines": {
"node": ">=18"
},
"exports": {
".": "./src/index.js"
},
"scripts": {
"lint": "eslint \"*.cjs\" \"./src/**/**/*.js\" \"./test/**/**/*.js\"",
"test": "c8 node --debug-port 3333 ./node_modules/mocha/bin/mocha",
"test:tdd": "npm test -- --watch"
},
"devDependencies": {
"@webcomponents/webcomponentsjs": "^2.5.0",
"c8": "^7.14.0",
"chai": "^4.3.10",
"eslint": "^8.4.0",
"fs-extra": "^9.0.1",
"koa": "^2.13.1",
"livereload": "^0.9.3",
"mocha": "^8.4.0"
}
}