-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 766 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 766 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
{
"name": "json-xdr",
"version": "0.1.1",
"description": "Easily convert between XDR and JSON.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/abuiles/json-xdr",
"author": "Adolfo Builes <builes.adolfo@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:all": "RUN_INTEGRATION=1 jest",
"lint:ts": "tslint --project .",
"build": "rm -rf dist/ && tsc"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/long": "^4.0.0",
"@types/node": "^11.13.2",
"jest": "^24.7.1",
"js-xdr": "^1.1.1",
"prettier": "1.17.0",
"stellar-sdk": "^3.3.0",
"ts-jest": "^24.0.1",
"tslint": "^5.15.0",
"typescript": "^3.4.1"
},
"dependencies": {}
}