-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
43
44
45
{
"name": "@medishn/toolkit",
"version": "1.0.4",
"description": "a toolkit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/", "README.md"],
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests",
"example": "examples"
},
"scripts": {
"test": "mocha --require ts-node/register tests/integration/*.spec.ts",
"build": "tsc",
"chmod": "chmod +x ./scripts/release",
"release": "npm run chmod && ./scripts/release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medishen/toolkit.git"
},
"keywords": ["nodejs", "medishn"],
"engines": {
"node": ">= 20"
},
"author": "Mahdi",
"license": "MIT",
"bugs": {
"url": "https://github.com/medishen/toolkit/issues"
},
"homepage": "https://github.com/medishen/toolkit#readme",
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.0",
"@types/sinon": "^17.0.3",
"chai": "^4.3.7",
"mocha": "^10.7.3",
"sinon": "^19.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}