forked from carhartl/typescript-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.97 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "typescript-cookie",
"version": "1.0.4",
"description": "A simple, lightweight API for handling cookies in the browser",
"author": "Klaus Hartl",
"license": "MIT",
"module": "dist/typescript-cookie.mjs",
"unpkg": "dist/typescript-cookie.min.mjs",
"jsdelivr": "dist/typescript-cookie.min.mjs",
"exports": {
".": {
"import": "./dist/typescript-cookie.mjs"
},
"./package.json": "./package.json"
},
"keywords": [
"browser",
"client-side",
"cookie",
"cookies",
"esm",
"module",
"typescript"
],
"scripts": {
"test": "jest",
"test:e2e": "jest --config '{\"testMatch\":[\"**/?(*.)e2e.js\"]}'",
"coverage": "jest --coverage",
"lint": "standard && ts-standard",
"format": "prettier -l --write --single-quote --no-semi '**/*.{html,js,json,md,mjs,ts,yml}' && standard --fix && ts-standard --fix",
"prebuild": "npm run clean",
"build": "rollup -c && tsc --emitDeclarationOnly --declarationDir dist",
"clean": "rm -rf dist/* built/* coverage/*",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git@github.com:carhartl/typescript-cookie.git"
},
"directories": {
"test": "test"
},
"files": [
"index.js",
"dist/**/*"
],
"types": "./dist/src/index.d.ts",
"devDependencies": {
"@rollup/plugin-typescript": "^10.0.0",
"@types/jest": "^27.0.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-html": "^7.0.0",
"eslint-plugin-markdown": "^3.0.0",
"fast-check": "^3.0.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"release-it": "^15.0.0",
"rollup": "^2.56.2",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-license": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"selenium-webdriver": "^4.0.0-beta.4",
"standard": "^17.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-standard": "^12.0.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=14"
}
}