forked from HarmonicLabs/plu-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
59
60
{
"name": "@harmoniclabs/plu-ts",
"version": "0.1.9",
"description": "An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"clear-jest": "jest --clearCache",
"test-watch": "jest --watchman",
"test-coverage": "jest --coverage",
"build": "tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"start": "npm-run-all --parallel build:watch run:watch"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"cardano",
"plutus",
"smart contract",
"smart-contract",
"smart contracts",
"smart-contracts",
"transaction",
"blockchain",
"block chain",
"block-chain",
"offchain",
"onchain",
"ada",
"ADA",
"dApp"
],
"author": "Michele Nuzzi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HarmonicLabs/plu-ts.git"
},
"bugs": {
"url": "https://github.com/HarmonicLabs/plu-ts/issues"
},
"homepage": "https://github.com/HarmonicLabs/plu-ts#readme",
"dependencies": {
"buffer": "^6.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"jest": "^27.5.1",
"tsc-alias": "^1.7.1",
"typescript": "^4.6.3"
}
}