-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 835 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 835 Bytes
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
{
"name": "@datatypes/path",
"version": "1.1.0",
"description": "Better path module than node's native path module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"unit-tests": "tsx test/main.ts",
"test": "npm run build && npm run unit-tests",
"prepublishOnly": "npm run clean && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/adius/better-path"
},
"keywords": [
"path"
],
"author": "Adrian Sieber",
"license": "MIT",
"bugs": {
"url": "https://github.com/adius/better-path/issues"
},
"homepage": "https://github.com/adius/better-path",
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}