-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "cookie-store",
"description": "A polyfill for the Cookie Store API",
"version": "4.0.0-next.4",
"author": "Mark",
"license": "MIT",
"homepage": "https://github.com/markcellus/cookie-store",
"keywords": [
"cookie store",
"cookie store polyfill",
"cookie",
"polyfill",
"cookies",
"es module cookies",
"es cookies",
"cookie esm"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "markcellus/cookie-store",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"banner-cli": "^0.14.1",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"husky": "^8.0.3",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"mocha": "^10.1.0",
"prettier": "^2.0.2",
"pretty-quick": "^3.1.0",
"typescript": "^4.0.2"
},
"files": [
"dist"
],
"engines": {
"node": ">= 14"
},
"scripts": {
"pretest": "npm run build",
"test": "npm run test:ts && eslint 'src/**/*' && npm run prettier",
"test:ts": "karma start test/karma.conf.cjs",
"prettier": "prettier --check 'src/**/*'",
"banner": "banner-cli dist/index.js",
"build": "tsc"
},
"dependencies": {}
}