-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.21 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": "storeit",
"version": "2.4.0",
"description": "A key/value storage system that publishes events.",
"main": "./lib/Storeit.js",
"homepage": "https://github.com/donavon/storeit",
"author": {
"name": "donavon"
},
"keywords": [
"storeit",
"webstorage",
"localstorage",
"sessionstorage",
"key",
"value",
"pair",
"kvp"
],
"contributors": [
{
"name": "Donavon West",
"email": "[email protected]",
"url": "http://donavon.com"
},
{
"name": "Paul Bouzakis",
"email": "[email protected]",
"url": "http://paulbouzakis.com"
}
],
"license": {
"type": "MIT",
"url": "http://github.com/donavon/storeit/raw/master/LICENSE"
},
"repository": {
"type": "git",
"url": "git://github.com/donavon/storeit.git"
},
"readmeFilename": "README.md",
"scripts": {
"lint": "jshint ./lib",
"test": "mocha"
},
"dependencies": {
"pubit-as-promised": "^1.1.1",
"q": "^1.2.1",
"underscore": "^1.7.0"
},
"devDependencies": {
"jshint": ">= 0.7.1",
"coffee-script": ">= 1.3.3",
"mocha": ">= 1.1.0",
"chai": ">= 1.0.4",
"sinon": ">= 1.3.4",
"sinon-chai": ">= 2.1.0"
}
}