-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 KB
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
{
"name": "posterior",
"title": "Posterior",
"description": "Hierarchical, declarative configuration of Promise-based, JSON-ready, XHR communication with remote APIs",
"version": "0.23.0",
"homepage": "http://esha.github.io/posterior/",
"author": {
"name": "ESHA Research",
"email": "nathan@esha.com",
"url": "http://www.esha.com"
},
"files": [
"dist",
"index.d.ts"
],
"types": "index.d.ts",
"main": "dist/posterior.js",
"repository": {
"type": "git",
"url": "git://github.com/esha/posterior.git"
},
"bugs": {
"url": "https://github.com/esha/posterior/issues"
},
"license": "MIT",
"scripts": {
"test": "grunt test",
"prepublishOnly": "grunt && git commit -m \"$npm_package_version\" README.md *.json dist docs/posterior.js && git tag $npm_package_version && git push && git push --tags"
},
"dependencies": {
"store2": "^2.10.0"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.6.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-nuget": "^0.2.0",
"load-grunt-tasks": "^5.1.0",
"qunit": "^2.9.3",
"time-grunt": "^2.0.0"
},
"keywords": [
"JSON",
"AJAX",
"XHR",
"config",
"API",
"REST"
]
}