-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.58 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": "objectify-cookies",
"version": "0.0.1",
"description": "Builds dictionary/object from browser cookies string",
"main": "objectify-cookies.js",
"scripts": {
"ts-build": "tsc --build",
"ci-test": "jest --coverage",
"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",
"objectify-cookies.js"
],
"coveragePathIgnorePatterns": [
"node_modules/"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"objectify-cookies.js": {
"statements": 93.33,
"branches": 85.71,
"functions": 100,
"lines": 93.33
}
},
"coverageReporters": [
"text"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/javascript-utilities/objectify-cookies.git"
},
"keywords": [
"JavaScript",
"browser",
"cookies",
"object"
],
"author": "S0AndS0",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/javascript-utilities/objectify-cookies/issues"
},
"homepage": "https://github.com/javascript-utilities/objectify-cookies#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.14",
"jest": "^26.4.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
}
}