-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.8 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@iamsquare/cookie-parse",
"version": "0.2.1",
"description": "Cookie string/file parse utilities.",
"main": "dist/lib/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"setup": "npm install",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"clean": "npm-run-all -p clean:*",
"clean:dist": "rimraf ./dist",
"clean:docs": "rimraf ./docs",
"clean:coverage": "rimraf ./coverage",
"build:watch": "tsc -w",
"build:bundle": "rollup -c",
"build:dist": "tsc -p ./tsconfig.d.json",
"watch": "npm-run-all -s clean:dist build:watch",
"build": "npm-run-all -s clean:dist build:dist build:bundle",
"dev": "npm-run-all watch test:watch",
"prod": "npm-run-all clean test:coverage build",
"lint": "eslint \"src/**/*.{js,ts}\" --quiet",
"lint:fix": "npm run eslint -- --fix",
"prettier": "prettier --write",
"docs": "npm-run-all clean:docs docs:generate",
"docs:generate": "typedoc"
},
"keywords": [
"netscape",
"cookie",
"file",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iamsquare/cookie-parse.git"
},
"bugs": {
"url": "https://github.com/iamsquare/cookie-parse/issues"
},
"private": false,
"author": "squaremarco",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.9.0",
"@types/ramda": "^0.27.40",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-jest": "^27.0.2",
"chalk": "^4.1.1",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.6",
"jest": "^27.0.3",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.50.5",
"semver": "^7.3.5",
"ts-jest": "^27.0.2",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"core-js": "^3.13.1",
"ramda": "^0.27.1",
"ramda-adjunct": "^2.33.0",
"ramda-extension": "^0.11.0",
"regenerator-runtime": "^0.13.7"
},
"directories": {
"lib": "dist"
},
"publishConfig": {
"access": "public"
}
}