forked from energywebfoundation/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "@energyweb/exchange-core",
"description": "Generic EACs order book product and matching",
"author": "EnergyWeb DevHub GmbH; Piotr Kosinski, piotr.kosinski@energyweb.org",
"license": "MIT",
"homepage": "https://github.com/energywebfoundation/origin/tree/master/packages/exchange-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/energywebfoundation/origin.git"
},
"bugs": {
"url": "https://github.com/energywebfoundation/origin/issues"
},
"version": "3.2.5",
"main": "dist/js/src/index.js",
"files": [
"dist/js/build",
"dist/js/src",
"dist/js/schemas"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "yarn build:ts",
"build:ts": "tsc --project tsconfig.json",
"lint": "eslint \"src/**/*{.ts,.tsx}\" --quiet",
"lint-fix": "eslint \"src/**/*{.ts,.tsx}\" --fix",
"test": "mocha -r ts-node/register test/*.test.ts --exit",
"test:e2e": "yarn test",
"prettier": "prettier --write --config-precedence file-override './src/**/*'",
"clean": "shx rm -rf build dist dist-shakeable schemas",
"precommit": "lint-staged"
},
"types": "dist/js/src/index.d.ts",
"dependencies": {
"@nestjs/common": "8.1.1",
"bn.js": "5.2.0",
"chai": "4.3.4",
"immutable": "4.0.0",
"moment": "2.29.2",
"rxjs": "7.4.0"
},
"devDependencies": {
"@types/bn.js": "5.1.0",
"@types/chai": "4.3.0",
"@types/mocha": "9.0.0",
"@types/node": "14.18.10",
"mocha": "9.1.3",
"ts-node": "9.1.1",
"typescript": "4.5.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}