-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "vault.js",
"version": "1.0.3",
"description": "Key-Value Storage of true data types for the browser and node",
"main": "index.js",
"author": "Jimmy Byrum (https://github.com/jimmybyrum)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:jimmybyrum/vault.js.git"
},
"bugs": {
"url": "https://github.com/jimmybyrum/vault.js/issues"
},
"homepage": "http://jimmybyrum.github.io/vault.js/",
"scripts": {
"test": "alias gulp='node_modules/gulp/bin/gulp.js';gulp eslint;mocha ./test;",
"build": "alias gulp='node_modules/gulp/bin/gulp.js';gulp build && ls -alh dist/"
},
"keywords": [
"localStorage",
"sessionStorage",
"cookie",
"cookies",
"local",
"session",
"file",
"store",
"storage",
"key",
"value",
"key-value",
"json"
],
"devDependencies": {
"gulp": "^3.8.10",
"gulp-browserify": "^0.5.1",
"gulp-clean": "^0.3.1",
"gulp-eslint": "^0.2.0",
"gulp-jsmin": "^0.1.4",
"gulp-md5-plus": "^0.1.6",
"gulp-rename": "^1.2.0",
"gulp-uglifyjs": "^0.5.0",
"mocha": "^2.2.5"
}
}