-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 852 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 852 Bytes
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
{
"name": "@streammedev/storage",
"version": "1.0.0",
"description": "web storage for cookies/localStorage/sessionStorage with expiration and other helpful features",
"main": "index.js",
"keywords": [
"cookie",
"localstorage",
"sessionstorage",
"web storage"
],
"author": "StreamMe",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:StreamMeDev/storage"
},
"scripts": {
"test": "npm run babel && happiness && mochify",
"prepublish": "npm test",
"postpublish": "git push && git push --tags",
"babel": "babel src -d lib",
"dev": "babel --watch src -d lib"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"happiness": "^7.1.2",
"mochify": "^2.18.1"
},
"dependencies": {
"browser-cookies": "^1.1.0"
}
}