-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.52 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
{
"name": "decimal-to-base",
"version": "0.0.3",
"description": "Converts decimal to provided base",
"main": "decimal-to-base.js",
"scripts": {
"ci-test": "jest --coverage",
"ts-build": "tsc --build",
"ci-build": "npm run ts-build && npm run ci-test",
"ci-watch": "jest --coverage --watchAll",
"py-serve": "python3 -m http.server --bind localhost 8080"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"roots": [
"__tests__"
],
"collectCoverageFrom": [
"__tests__/**.js",
"decimal-to-base.js"
],
"coveragePathIgnorePatterns": [
"node_modules/"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"decimal-to-base.js": {
"statements": 97.06,
"branches": 92.31,
"functions": 100,
"lines": 97.06
}
},
"coverageReporters": [
"text"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/javascript-utilities/decimal-to-base.git"
},
"keywords": [
"convert",
"decimal",
"number",
"hexadecimal",
"octal",
"binary"
],
"author": "S0AndS0",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/javascript-utilities/decimal-to-base/issues"
},
"homepage": "https://github.com/javascript-utilities/decimal-to-base#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"typescript": "^5.1.3"
}
}