-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "typed-ski",
"version": "1.0.5",
"description": "SKI combinators in Typescript",
"scripts": {
"test": "mocha test/**/*.test.ts",
"build": "tsc",
"lint": "yarn eslint lib test",
"lint:fix": "yarn eslint lib test --fix",
"ski": "yarn tsx bin/ski.ts"
},
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:maxdeliso/typed-ski.git"
},
"keywords": [
"SKI",
"combinators"
],
"author": "Joseph Maximilian DeLiso",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxdeliso/typed-ski/issues"
},
"homepage": "https://github.com/maxdeliso/typed-ski",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@stylistic/eslint-plugin-ts": "^2.3.0",
"@types/chai": "^5.0.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.10.1",
"@types/random-seed": "^0.3.5",
"@types/terminal-kit": "^2.5.6",
"chai": "^5.1.2",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"mocha": "^11.0.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.17.0"
},
"dependencies": {
"random-seed": "^0.3.0",
"terminal-kit": "^3.0.1"
}
}