-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 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
{
"name": "@adscore/nodejs-common",
"version": "1.0.8",
"description": "NodeJS client library for Adscore",
"scripts": {
"prepare-package": "rm -r -f ./dist && npm run generate-barrels && tsc && npm run copy-files",
"publish-package": "rm -r -f ./dist/*.tgz && cd ./dist && npm publish --access public",
"create-test-package": "npm run prepare-package && cd ./dist && npm pack",
"copy-files": "cp package.json ./dist/ && cp readme.md ./dist/ && mv ./dist/src/* ./dist/",
"generate-barrels": "barrelsby --delete --directory ./src --location all",
"test": "jest",
"test:watch": "jest --watch",
"tsc": "tsc"
},
"main": "index.js",
"types": "index.d.ts",
"author": "Adscore",
"homepage": "https://adscore.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Adscore/nodejs-common.git"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/libsodium-wrappers": "^0.7.14",
"@types/locutus": "^0.0.8",
"@types/node": "^18.19.0",
"barrelsby": "^2.8.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"@msgpack/msgpack": "^2.8.0",
"libsodium": "^0.7.13",
"libsodium-wrappers": "^0.7.13",
"php-serialize": "^4.1.1"
},
"dependencies": {
"locutus": "^3.0.4"
}
}