-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 939 Bytes
/
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
{
"name": "nem-trezor",
"version": "1.1.0",
"description": "nem trezor library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Sergi <[email protected]>",
"license": "MIT",
"scripts": {
"copyvendor": "cp -r ./src/vendor ./dist/src/vendor",
"build": "rm -rf dist && tsc && npm run copyvendor",
"preversion": "npm run build",
"postversion": "git push && git push --tags"
},
"keywords": [
"NEM",
"Trezor",
"Library",
"Blockchain"
],
"devDependencies": {
"@types/node": "^9.4.6",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"nem-library": "1.0.5",
"trezor-connect": "^6.0.2"
},
"files": [
"README.md",
"dist/src/",
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map"
],
"repository": {
"type": "git",
"url": "https://github.com/shierve/nem-trezor"
}
}