-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 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
{
"name": "@doridian/jsip",
"version": "1.9.0",
"private": false,
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "rimraf lib && tsc --project .",
"test": "npm run build && node ./lib/test/dns.js",
"lint": "eslint --report-unused-disable-directives --cache --color . && prettier --check .",
"fmt": "eslint --fix . && prettier --write .",
"prepare": "npm rum build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Doridian/jsip.git"
},
"author": "Doridian",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Doridian/jsip/issues"
},
"homepage": "https://github.com/Doridian/jsip#readme",
"devDependencies": {
"@types/chai": "5.0.1",
"rimraf": "6.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.0",
"prettier": "^3.3.3",
"typescript": "5.7.3",
"typescript-eslint": "^8.18.0"
}
}