forked from mymonero/mymonero-core-js
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 1.59 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"private": true,
"workspaces": [
"packages/*"
],
"version": "0.0.0",
"description": "Various packages for Monero/CryptoNote cryptography and protocols",
"repository": {
"type": "git",
"url": "git+https://github.com/MyCryptoHQ/@xmr-core/xmr-core.git"
},
"scripts": {
"build": "tsc",
"format": "find . -name '*.js*' | xargs prettier --write --config ./.prettierrc --config-precedence file-override",
"test": "jest",
"test:coverage": "jest --coverage",
"publish": "lerna publish"
},
"keywords": [
"xmr-core",
"monero",
"mymonero",
"typescript",
"ts",
"lightweight",
"lightwallet",
"wallet",
"crypto",
"script",
"utility",
"tool",
"xmr"
],
"author": "MyMonero",
"license": "See LICENSE.TXT. Copyright (c) 2014-2018, MyMonero.com. All rights reserved.",
"bugs": {
"url": "https://github.com/MyCryptoHQ/@xmr-core/xmr-core/issues"
},
"homepage": "https://github.com/MyCryptoHQ/@xmr-core/xmr-core#readme",
"devDependencies": {
"jest": "^23.1.0",
"lerna": "^3.4.0",
"ts-jest": "^23.10.0-beta.6",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.4.2",
"typescript": "^3"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"globals": {
"ts-jest": {
"tsConfig": "./__test__/tsconfig.json"
}
},
"modulePathIgnorePatterns": [
"dist"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"modulePaths": [
"<rootDir>/packages"
],
"testRegex": "((\\.|/)(spec))\\.ts$",
"coveragePathIgnorePatterns": [
"cryptonote_crypto_EMSCRIPTEN",
"/node_modules/",
"__test__"
]
},
"name": "xmr-core"
}