-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "memorystorage",
"version": "0.12.0",
"description": "Memory-backed implementation of the Web Storage API",
"src": "src/memorystorage.js",
"main": "dist/memorystorage.umd.js",
"dist": {
"umd": "dist/memorystorage.umd.js",
"min": "dist/memorystorage.min.js",
"map": "dist/memorystorage.min.js.map"
},
"exports": [
"./dist/memorystorage.umd.js"
],
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/download/memorystorage.git"
},
"keywords": [
"javascript",
"persistence",
"persistent objects",
"localStorage",
"Web Storage API"
],
"author": {
"name": "Stijn de Witt",
"email": "[email protected]",
"url": "http://StijnDeWitt.com"
},
"contributors": [
{
"name": "Matthias Seemann",
"url": "https://github.com/semmel"
},
{
"name": "Corentin Minne",
"url": "https://github.com/CorentinMinne"
}
],
"copyright": "©2016 by Stijn de Witt and contributors. Some rights reserved.",
"license": "CC-BY-4.0",
"licenseUrl": "https://creativecommons.org/licenses/by/4.0/",
"bugs": {
"url": "https://github.com/download/memorystorage/issues"
},
"homepage": "http://download.github.io/memorystorage",
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-uglify": "~3.0.1",
"grunt-umd": "^2.3.3",
"load-grunt-tasks": "~3.5.2",
"node-qunit-phantomjs": "^1.4.0"
},
"dependencies": {},
"scripts": {
"test": "node ./tests/test-node.js"
}
}