forked from QubitProducts/cookieman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "cookieman",
"version": "1.2.3",
"main": "lib/cookieman",
"dependencies": {},
"devDependencies": {
"benchmark": "^2.1.0",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.1",
"karma-expect": "^1.1.1",
"karma-mocha": "^0.2.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"sinon": "^1.17.2",
"standard": "^6.0.8",
"webpack": "^1.12.2"
},
"description": "Simple commonjs cookie lib with path and domain awareness and ie7+ support",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "karma start --single-run && node_modules/.bin/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",
"standard": {
"global": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"it",
"expect"
]
}
}