forked from nimahkh/soft_bun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "soft_bun",
"version": "1.2.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register 'src/test/**/*.ts'",
"lint": "gts lint",
"clean": "gts clean",
"prepare": "npm install typescript",
"compile": "npm install typescript && tsc --declaration --outDir ./dist",
"fix": "gts fix",
"install": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"build": "npm run compile",
"build:watch": "tsc -w",
"dev": "npm run build && concurrently \"npm run build:watch\" \"npm run serve:watch\"",
"serve": "node ./dist/index.js",
"serve:watch": "nodemon ./dist/index.js",
"release": "semantic-release"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^11.0.3",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^14.18.36",
"@types/uuid": "^9.0.1",
"chai": "^4.3.7",
"concurrently": "^7.6.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"gts": "^4.0.1",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"semantic-release": "^21.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"uuid": "^9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nimatrengo/soft_bun.git"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
}
}