forked from OpenBeta/sandbag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 928 Bytes
/
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
{
"name": "@openbeta/sandbag",
"version": "0.0.11",
"description": "Rock climbing grades and conversions",
"repository": "https://github.com/OpenBeta/sandbag.git",
"module": "dist/sandbag.esm.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"lint": "ts-standard",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"clean": "rm -rf build/*",
"build": "tsdx build --tsconfig tsconfig.build.json"
},
"author": "Kevin Nadro",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.0",
"csv-parser": "^3.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"ts-standard": "^11.0.0",
"tsdx": "^0.14.1",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"dependencies": {},
"keywords": [
"rock climbing",
"climbing grades"
]
}