-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 946 Bytes
/
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
{
"name": "@midwayjs/cookies",
"description": "midway cookies",
"version": "1.2.0",
"main": "dist/index",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"dependencies": {
"scmp": "^2.1.0",
"should-send-same-site-none": "^2.0.5"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^17.0.0",
"jest": "^26.6.0",
"mwts": "^1.0.5",
"ts-jest": "^26.5.5",
"ts-node": "^10.0.0",
"typescript": "^4.1.0"
},
"keywords": [
"midway",
"cookies"
],
"author": "czy88840616 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest",
"cov": "jest --coverage",
"ci": "npm run test",
"lint": "mwts check",
"lint:fix": "mwts fix"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/midwayjs/midway.git"
}
}