-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "@microcode/pathtree",
"version": "0.3.0",
"description": "Fast search tree for arbitrary paths",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jesper Svennevid <jesper@microcode.se>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/microcode/pathtree.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/microcode/pathtree/issues"
},
"homepage": "https://github.com/microcode/pathtree#readme",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chai": "^4.3.7",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"lint": "eslint --c .eslintrc --ext .ts src",
"prepare": "yarn run build",
"prepublishOnly": "yarn run test && yarn run lint",
"preversion": "yarn run lint"
}
}