-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "@completium/archetype-ts-types",
"version": "0.1.13",
"description": "TS types for Archetype",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf ./build && npx tsc --outDir build",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/completium/archetype-ts-types.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"tezos",
"archetype",
"typescript",
"binding",
"test"
],
"author": "Completium",
"license": "MIT",
"bugs": {
"url": "https://github.com/completium/archetype-ts-types/issues"
},
"homepage": "https://github.com/completium/archetype-ts-types#readme",
"dependencies": {
"bignumber.js": "^9.0.2",
"bs58check": "^2.1.2"
},
"devDependencies": {
"@types/bs58check": "^2.1.0",
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"typescript": "^4.8.4"
}
}