-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
60 lines (60 loc) · 1.73 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": "@waves/signature-adapter",
"version": "7.0.0",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "GIT",
"url": "https://github.com/wavesplatform/waves-signature-adapter"
},
"dependencies": {
"@types/ramda": "^0.27.3",
"@waves/bignumber": "^1.1.1",
"@waves/data-entities": "^2.0.7",
"@waves/ledger": "^4.0.0",
"@waves/money-like-to-node": "^0.1.9",
"@waves/ts-types": "^0.2.0",
"@waves/waves-transactions": "^4.2.10",
"ramda": "^0.25.0"
},
"scripts": {
"test": "jest",
"compile": "tsc",
"browserify": "node_modules/.bin/browserify dist/index.js -s wavesSignatureAdapter -u @waves/waves-crypto -u @waves/bignumber -u @waves/waves-transactions -u @waves/data-entities -u @waves/marshall -u @waves/ledger -o dist/signature-adapter.js",
"build": "npm run compile && npm run browserify && npm run uglify",
"uglify": "node_modules/.bin/uglifyjs dist/signature-adapter.js -o dist/signature-adapter.min.js",
"postpublish": "git push origin HEAD",
"postversion": "npm publish",
"prepare": "npm run build"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node-fetch": "^2.5.5",
"browserify": "^16.5.1",
"jest": "24.8.0",
"node-fetch": "^2.6.1",
"ts-jest": "^23.10.3",
"typescript": "^3.2.2",
"uglify-js": "^3.4.7"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "jest-environment-node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/tests_*.+(ts|tsx|js)"
]
}
}