-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 883 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 883 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
{
"name": "js-common",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"cookie": "^0.5.0",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.9",
"yaml": "^2.3.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.5",
"@semantic-release/npm": "^10.0.5",
"@types/cookie": "^0.5.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.3",
"@types/node-fetch": "^2.6.4",
"git-publish": "^2.0.0",
"semantic-release": "^21.1.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup-node --entry.index src/index.ts --minify --keep-names --target esnext --dts --treeshake",
"prepare": "npm run build",
"git-publish": "git-publish -b dist",
"test": "echo OK - no tests to run"
}
}