-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "@transmute/rfc9162",
"version": "0.1.0",
"description": "An implementation of https://datatracker.ietf.org/doc/rfc9162/",
"main": "./dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc -b",
"test": "jest",
"coverage": "jest --ci --coverage",
"lint": "eslint ./src ./test --fix",
"shove": "git add -A; git commit -m ':rocket:'; git push origin main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transmute-industries/rfc9162.git"
},
"author": "Orie Steele",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/transmute-industries/rfc9162/issues"
},
"homepage": "https://github.com/transmute-industries/rfc9162#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"better-sqlite3": "^11.3.0",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}