forked from bevacqua/local-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 989 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 989 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
{
"name": "local-storage",
"version": "1.4.1",
"description": "A simplified localStorage API that just works",
"main": "local-storage.js",
"repository": {
"type": "git",
"url": "https://github.com/bevacqua/local-storage.git"
},
"keywords": [
"localstorage",
"local-storage",
"persistance"
],
"author": "Nicolas Bevacqua <nicolasbevacqua@gmail.com> (http://bevacqua.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bevacqua/local-storage/issues"
},
"homepage": "https://github.com/bevacqua/local-storage",
"scripts": {
"deploy": "browserify local-storage.js -o dist/local-storage.js && git add . && git commit -am \"Autogenerated pre-deployment commit\" ; npm version ${BUMP:-\"patch\"} --no-git-tag-version && git add package.json && git commit -m \"Autogenerated pre-deployment commit\" && bower version ${BUMP:-\"patch\"} && git push --tags && npm publish"
},
"devDependencies": {
"browserify": "^8.0.3"
}
}