-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@tristimb/data-structures",
"version": "0.6.1",
"description": "implementation of common data structures",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"build": "node ./esbuild.js",
"postbuild": "tsc --project tsconfig.build.json",
"lint": "eslint --fix 'src/**/*.ts",
"prerelease:major": "npm run build",
"prerelease:minor": "npm run build",
"prerelease:patch": "npm run build",
"release:major": "npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
"release:minor": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
"release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tatimblin/data-structures.git"
},
"keywords": [
"npm",
"data-structures"
],
"author": "Tristan Timblin",
"engines": {
"node": ">=16.0.0 <21.0.0"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/tatimblin/data-structures/issues"
},
"homepage": "https://github.com/tatimblin/data-structures#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"esbuild": "^0.18.12",
"eslint": "^8.45.0",
"jest": "^29.7.0",
"npm-dts": "^1.3.12",
"semver": "^7.5.4",
"ts-jest": "^29.1.2",
"typescript": "^5.1.6"
},
"jest": {
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/src/**/*.test.ts"
]
}
}