-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "cookieman",
"version": "1.3.0",
"main": "lib/cookieman",
"types": "types/cookieman.d.ts",
"devDependencies": {
"benchmark": "^2.1.0",
"healthier": "^4.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-expect": "^1.1.1",
"karma-mocha": "^2.0.1",
"karma-sauce-launcher": "^2.0.2",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^4.0.2",
"mocha": "^8.4.0",
"prettier-standard": "^15.0.1",
"sinon": "^9.0.3",
"webpack": "^4.44.1"
},
"description": "Simple commonjs cookie lib with path and domain awareness and ie7+ support",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "karma start --single-run",
"test-ci": "karma start karma.conf.ci.js --single-run",
"lint": "healthier",
"format": "prettier-standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QubitProducts/cookieman.git"
},
"keywords": [
"cookie"
],
"author": "Alan Clarke <alan@qubit.com> (qubit.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/QubitProducts/cookieman/issues"
},
"homepage": "https://github.com/QubitProducts/cookieman",
"healthier": {
"global": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"it",
"expect"
]
}
}