This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.45 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": "auto-cookie",
"description": "auto set cookie domain like google-analytics",
"version": "2.0.0",
"author": "UNCOVER TRUTH Inc.",
"bugs": {
"url": "https://github.com/uncovertruth/auto-cookie/issues"
},
"dependencies": {},
"devDependencies": {
"@types/finalhandler": "1.1.0",
"@types/js-cookie": "2.2.2",
"@types/mocha": "5.2.7",
"@types/node": "9.6.49",
"@types/power-assert": "1.5.0",
"@types/serve-static": "1.13.2",
"@types/webdriverio": "4.13.3",
"@uncovertruth/eslint-config": "4.5.0",
"@uncovertruth/tslint-config": "4.5.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"espower-typescript": "9.0.2",
"finalhandler": "1.1.2",
"husky": "1.3.1",
"js-cookie": "2.2.0",
"lint-staged": "8.2.0",
"mocha": "5.2.0",
"power-assert": "1.6.1",
"prettier-eslint-cli": "4.7.1",
"rimraf": "2.6.3",
"serve-static": "1.14.1",
"size-limit": "0.22.0",
"ts-loader": "5.4.5",
"ts-node": "8.2.0",
"tslint": "5.17.0",
"typescript": "3.5.1",
"typescript-eslint-parser": "21.0.2",
"wdio-mocha-framework": "0.6.4",
"wdio-sauce-service": "0.4.14",
"wdio-selenium-standalone-service": "0.0.10",
"wdio-spec-reporter": "0.1.5",
"webdriverio": "4.14.4",
"webpack": "4.33.0",
"webpack-cli": "3.3.4"
},
"files": [
"lib/"
],
"homepage": "https://github.com/uncovertruth/auto-cookie#readme",
"keywords": [
"cookie"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier-eslint --parser typescript --write",
"tslint --fix",
"git add"
],
"*.md": [
"prettier --parser markdown --write",
"git add"
]
},
"main": "lib/index.js",
"peerDependencies": {
"js-cookie": "2.x"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/uncovertruth/auto-cookie.git"
},
"scripts": {
"build": "tsc && webpack --env=production && size-limit",
"clean": "rimraf lib",
"lint": "tslint '{src,test}/*.ts'",
"prebuild": "npm run clean",
"precommit": "lint-staged",
"prepublish": "npm run build",
"prestart": "webpack",
"pretest": "webpack",
"start": "ts-node server.ts",
"test": "wdio wdio.conf.js",
"test:sauce": "cross-env CI_MODE=sauce wdio wdio.conf.js"
},
"size-limit": [
{
"path": "lib/index.js",
"limit": "300 B"
}
],
"types": "lib/index.d.ts"
}