-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"private": true,
"name": "@lostlink/ark-mint",
"description": "Provides Minting Capabilities for Ark Core",
"version": "0.0.1",
"contributors": [
"Nuno Souto <[email protected]>"
],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "yarn test && yarn build",
"pretest": "yarn lint && yarn build",
"compile": "../../node_modules/typescript/bin/tsc",
"build": "yarn clean && yarn compile",
"build:watch": "yarn clean && yarn compile -w",
"clean": "del dist",
"docs": "../../node_modules/typedoc/bin/typedoc src --out docs",
"lint": "../../node_modules/tslint/bin/tslint -c ./tslint.json 'src/**/*.ts' '__tests__/**/*.ts' --fix",
"test": "cross-env CORE_ENV=test jest --runInBand --forceExit",
"test:unit": "./node_modules/.bin/jest __tests__/unit --runInBand --forceExit",
"test:e2e": "./node_modules/.bin/jest __tests__/e2e --runInBand --forceExit",
"test:coverage": "cross-env CORE_ENV=test jest --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit",
"test:debug": "cross-env CORE_ENV=test node --inspect-brk ../../node_modules/.bin/jest --runInBand",
"test:watch": "cross-env CORE_ENV=test jest --runInBand --watch",
"test:watch:all": "cross-env CORE_ENV=test jest --runInBand --watchAll",
"updates": "../../node_modules/npm-check-updates/bin/npm-check-updates -a"
},
"dependencies": {
"@arkecosystem/core-container": "2.7.25",
"@arkecosystem/core-event-emitter": "2.7.25",
"@arkecosystem/core-interfaces": "2.7.25",
"@arkecosystem/core-state": "2.7.25",
"@arkecosystem/core-transactions": "2.7.25",
"@arkecosystem/crypto": "2.7.25",
"bytebuffer": "5.0.1"
},
"devDependencies": {
"@arkecosystem/core-utils": "2.7.25",
"typedoc": "0.19.2",
"regenerator-runtime": "0.13.7",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.12",
"cross-env": "^7.0.0",
"del-cli": "^3.0.0",
"jest": "^25.0.0",
"jest-extended": "^0.11.2",
"npm-check-updates": "^3.1.24",
"ts-jest": "^25.0.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"jest": {
"testEnvironment": "node",
"bail": true,
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": false,
"coverageDirectory": "<rootDir>/.coverage",
"collectCoverageFrom": [
"packages/**/src/**/*.ts",
"!**/node_modules/**"
],
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"html"
],
"watchman": false,
"setupFilesAfterEnv": [
"jest-extended"
]
}
}