-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "@openbeta/sandbag",
"version": "0.0.51",
"description": "Rock climbing grades and conversions",
"repository": "https://github.com/OpenBeta/sandbag.git",
"module": "./dist/sandbag.esm.js",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/sandbag.esm.js",
"require": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"lint": "ts-standard",
"fix": "yarn ts-standard --fix",
"test": "cross-env 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": "^29.5.0",
"cross-env": "^7.0.3",
"csv-parser": "^3.0.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.6.0",
"ts-standard": "^12.0.0",
"tsdx": "^0.14.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
},
"dependencies": {},
"keywords": [
"rock climbing",
"climbing grades"
],
"publishConfig": {
"@openbeta:registry": "https://registry.npmjs.org"
},
"type": "module"
}