forked from AtomicIP/AtomicIP-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.1 KB
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
{
"name": "atomicip",
"version": "1.0.0",
"description": "Atomic Patent - Decentralized IP Registry on Stellar Soroban",
"private": true,
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"keywords": [
"blockchain",
"stellar",
"soroban",
"intellectual-property",
"atomic-swap"
],
"author": "Atomic Patent Contributors",
"license": "MIT",
"devDependencies": {
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"src/**/__tests__/**/*.test.js",
"src/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/__tests__/**",
"!src/**/*.test.js"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
}
}