forked from wavesplatform/waves-signature-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "@waves/signature-adapter",
"version": "4.1.6",
"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.25.46",
"@waves/data-entities": "^1.6.3",
"@waves/ledger": "^3.0.1",
"@waves/signature-generator": "^5.0.0",
"@waves/ts-types": "^0.2.0-beta-1",
"ramda": "^0.25.0"
},
"scripts": {
"test": "jest",
"compile": "tsc",
"browserify": "node_modules/.bin/browserify dist/index.js -s wavesSignatureAdapter -u @waves/data-entities -u @waves/signature-generator -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",
"postversion": "npm publish",
"prepare": "npm run build"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"browserify": "^16.2.3",
"jest": "^23.6.0",
"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/*.+(ts|tsx|js)"
]
}
}