-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
{
"name": "typed-ski",
"version": "1.0.7",
"description": "SKI combinators in Typescript",
"scripts": {
"clean": "rimraf build/",
"test": "mocha test/**/*.test.ts",
"test:performance": "mocha test/performance.test.ts",
"build": "yarn clean && tsc",
"lint": "yarn eslint lib test",
"lint:fix": "yarn eslint lib test --fix",
"ski": "yarn tsx bin/ski.ts"
},
"type": "module",
"main": "./build/lib/index.js",
"module": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"exports": {
".": {
"types": "./build/lib/index.d.ts",
"import": "./build/lib/index.js"
}
},
"files": [
"build/lib/"
],
"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": "3.0.1",
"@stylistic/eslint-plugin-ts": "3.0.1",
"@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",
"rimraf": "^6.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"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}