-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.02 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
{
"name": "asch-contract-examples",
"version": "1.0.0",
"description": "Asch contract examples",
"scripts": {
"test": "jest"
},
"author": "AschPlatform",
"license": "ISC",
"dependencies": {
"asch-contract-core": "~0.4.0",
"asch-contract-tslint": "~0.4.0",
"asch-contract-types": "~0.4.0",
"asch-web": "^0.2.8"
},
"devDependencies": {
"@types/jest": "24.0.11",
"jest": "24.7.1",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"typescript": "3.4.3"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"coverageReporters": [
"html",
"text-summary"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"mock.js"
]
},
"types": "asch-contract-types"
}