forked from nbubna/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "store2",
"version": "2.12.0",
"description": "Better localStorage",
"keywords": [
"localStorage",
"sessionStorage",
"json",
"namespace",
"store"
],
"author": {
"name": "Nathan Bubna",
"email": "[email protected]",
"url": "http://www.esha.com/"
},
"files": [
"src",
"dist",
"index.d.ts"
],
"main": "dist/store2.js",
"types": "index.d.ts",
"bugs": {
"url": "http://github.com/nbubna/store/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "http://github.com/nbubna/store.git"
},
"license": "(MIT OR GPL-3.0)",
"scripts": {
"prepublishOnly": "grunt && git commit -m \"$npm_package_version\" README.md *.json dist && git tag $npm_package_version && git push && git push --tags",
"test": "grunt qunit"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-component-build": "^0.2.8",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-qunit": "^1.0.0",
"grunt-contrib-uglify": "^2.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-lib-phantomjs": "^1.1.0",
"grunt-nuget": "^0.2.0",
"load-grunt-tasks": "^3.5.2",
"phantomjs": "^2.1.7",
"time-grunt": "^1.4.0"
}
}