forked from mulesoft-labs/js-client-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "client-oauth2",
"version": "0.2.4",
"description": "Straight-forward library for executing OAuth 2.0 flows and making API requests.",
"main": "client-oauth2.js",
"files": [
"client-oauth2.js",
"LICENSE"
],
"scripts": {
"lint": "standard",
"test-browser": "karma start",
"test-node": "mocha -R spec --bail --require test/support/globals.js",
"test": "npm run lint && npm run test-node && npm run test-browser"
},
"repository": {
"type": "git",
"url": "git://github.com/mulesoft/js-client-oauth2.git"
},
"keywords": [
"oauth2",
"authentication",
"token"
],
"author": "MuleSoft, Inc.",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/mulesoft/js-client-oauth2/issues"
},
"homepage": "https://github.com/mulesoft/js-client-oauth2",
"devDependencies": {
"chai": "^2.0.0",
"es6-promise": "^2.0.0",
"is-travis": "^1.0.0",
"karma": "^0.12.23",
"karma-chrome-launcher": "^0.1.4",
"karma-cli": "0.0.4",
"karma-coverage": "^0.2.6",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.9",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon-chai": "^0.3.0",
"mocha": "^2.0.1",
"pre-commit": "^1.0.4",
"standard": "^2.6.2"
},
"dependencies": {
"popsicle": "^0.3.10"
},
"standard": {
"ignore": [
"bower_components/**"
]
}
}