-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.74 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "monocle-client-js",
"version": "0.5.0",
"description": "JS client for Monocle APIs, supporting Angular and jQuery",
"main": "lib/index.js",
"scripts": {
"test": "grunt test",
"lint": "eslint lib/",
"build": "grunt build",
"typecheck": "tsc",
"demo": "grunt build && cp monocle-client-angular*.js demo/public && cp monocle-client-jquery*.js demo/public && cp node_modules/bluebird/js/browser/bluebird.js demo/public && nodemon demo/index.js"
},
"repository": {
"type": "git",
"url": "http://github.com/ifwe/monocle-api-client-js.git"
},
"keywords": [
"monocle",
"monocle-api",
"api",
"tagged",
"client"
],
"author": "Web Team Awesome",
"license": "MIT",
"bugs": {
"url": "https://github.com/ifwe/monocle-client-js/issues"
},
"dependencies": {
"bluebird": "^3.7.2",
"clone": "^1.0.3",
"jquery": "^3.3.1",
"monocle-api": "^3.1.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"tiny-sha256": "^1.0.2"
},
"homepage": "https://github.com/ifwe/monocle-client-js",
"devDependencies": {
"@types/node": "^9.6.2",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"connect": "^3.6.5",
"eslint": "^4.19.1",
"grunt": "^1.0.2",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-docco": "^0.5.0",
"grunt-mocha-test": "^0.13.3",
"grunt-webpack": "^3.1.1",
"jsdom": "^7.2.2",
"method-override": "^2.3.10",
"mocha": "^7.1.0",
"nodemon": "^1.14.12",
"serve-static": "^1.13.2",
"sinon": "^9.0.1",
"typescript": "^3.8.1",
"webpack": "^3.12.0"
}
}