-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.85 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
50
51
52
53
54
55
56
57
58
{
"name": "typey-type-cli",
"version": "0.0.0",
"description": "Typey Type CLI: generates steno word lists, dictionaries, and lessons",
"main": "build/index.js",
"scripts": {
"build": "yarn clean && yarn compile && yarn chmod",
"clean": "sh -c 'if [ -e build ] ; then rm -r ./build; fi;'",
"chmod": "sh -c 'chmod u+x ./build/index.js'",
"compile": "tsc --build",
"dev": "ts-node src/index.ts",
"lint:check": "eslint '**/meta.json' 'src/**/*.{js,ts}'",
"lint:fix": "yarn lint:check --fix && yarn prettier",
"prettier": "prettier --write 'faux-typey-type-data/lesson-source-data/**/meta.json' 'src/**/*.{js,ts}' --loglevel 'warn'",
"test": "yarn build && jest --coverage",
"test:only": "jest",
"test:silent": "jest --coverage=false --silent --verbose=false --reporters='jest-silent-reporter'",
"test:watch": "yarn build && jest --watch"
},
"bin": {
"typey-type": "./bin/run"
},
"author": "Di <[email protected]>",
"homepage": "https://github.com/didoesdigital/typey-type-cli",
"license": "MIT",
"repository": "didoesdigital/typey-type-cli",
"private": true,
"files": [
"/bin",
"/build"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^18.7.21",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"commander": "^8.3.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"jest-silent-reporter": "^0.5.0",
"prettier": "2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"bugs": "https://github.com/didoesdigital/typey-type-cli/issues",
"keywords": [
"steno",
"stenography"
],
"types": "build/index.d.ts",
"packageManager": "[email protected]"
}