forked from dyoo/js-numbers
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 KB
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": "tower.js",
"version": "0.7.1",
"description": "A JS implementation of the Racket numeric tower.",
"type": "module",
"files": [
"dist/**/*"
],
"types": "dist/tower.d.ts",
"exports": {
".": "./dist/tower.js",
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint --max-warnings=0 .",
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kclapper/tower.js.git"
},
"keywords": [
"Racket",
"Scheme",
"numeric tower",
"numbers"
],
"author": [
"kclapper"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kclapper/tower.js/issues"
},
"homepage": "https://kclapper.github.io/tower.js/",
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"benchmark": "^2.1.4",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
}
}