-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.31 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
44
45
46
47
48
49
{
"name": "jolicitron",
"version": "3.1.0",
"description": "A parser builder for Google Hash Code problem inputs",
"main": "./dist/src/index.js",
"bin": {
"jolicitron": "./dist/src/cli.js"
},
"scripts": {
"test": "node --test --loader tsx src/*.test.ts src/**/*.test.ts examples/**/*.test.ts",
"test:watch": "nodemon --watch src/*.ts --exec npm test",
"test:bin": "docker image build --file test/bin/bin.dockerfile .",
"prettier": "prettier --ignore-unknown *",
"prettier:write": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --check",
"build": "tsc",
"build:clean": "rm -rf dist",
"build:full": "npm run build:clean && npm run build"
},
"dependencies": {
"yargs": "17.3.1"
},
"devDependencies": {
"@types/node": "18.8.4",
"@types/yargs": "17.0.8",
"nodemon": "2.0.20",
"prettier": "2.5.1",
"tsx": "3.10.1",
"typescript": "4.5.5"
},
"engines": {
"node": ">=18.3.0"
},
"keywords": [
"google",
"hash code",
"parser"
],
"author": "Hugo Wood <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hgwood/jolicitron.git"
},
"bugs": {
"url": "https://github.com/hgwood/jolicitron/issues"
},
"homepage": "https://github.com/hgwood/jolicitron"
}