-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "cache-control-parser",
"version": "2.0.6",
"description": "A humble cache-control parser",
"homepage": "https://github.com/etienne-martin/cache-control-parser",
"keywords": [
"cache",
"http",
"headers",
"http-headers",
"cache-control",
"parser",
"stringify"
],
"license": "MIT",
"author": {
"name": "Etienne Martin"
},
"repository": {
"type": "git",
"url": "https://github.com/etienne-martin/cache-control-parser"
},
"bugs": {
"url": "https://github.com/etienne-martin/cache-control-parser/issues"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "concurrently 'webpack --mode development --watch' 'tsc --watch'",
"build": "concurrently 'webpack --mode production' 'tsc'",
"predev": "yarn cleanup",
"prebuild": "yarn cleanup",
"cleanup": "rm -rf ./dist",
"test": "jest src --coverage --verbose --runInBand",
"test:watch": "jest src --coverage --verbose --watch",
"coverage": "coveralls < ./coverage/lcov.info"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.5.0",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-optional-chaining": "7.7.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-typescript": "7.3.3",
"@types/jest": "22.2.3",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"babel-loader": "8.0.6",
"concurrently": "5.1.0",
"coveralls": "3.0.9",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-loader": "3.0.3",
"eslint-plugin-prettier": "3.1.1",
"fork-ts-checker-webpack-plugin": "3.0.1",
"jest": "22.4.3",
"prettier": "1.19.1",
"ts-jest": "22.4.3",
"typescript": "3.7.3",
"webpack": "4.36.0",
"webpack-cli": "3.3.5"
}
}