-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "oauth2-implicit-flow",
"version": "0.1.0",
"description": "OAuth2 Library for Public Clients (Implicit Flow Only)",
"homepage": "https://github.com/gregates/oauth2-implicit-flow",
"main": "oauth2.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gregates/oauth2-implicit-flow.git"
},
"author": {
"name": "Greg Gates",
"email": "[email protected]"
},
"contributors": [
{
"name": "Greg Gates",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/gregates/oauth2-implicit-flow/issues"
},
"dependencies": {
"jquery": "^2.1.1"
},
"devDependencies": {
"browserify": "^5.12.0",
"karma": "^0.12.23",
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "^0.2.2",
"karma-phantomjs-launcher": "^0.1.4",
"karma-story-reporter": "^0.2.2"
},
"scripts": {
"test": "./node_modules/browserify/bin/cmd.js spec/require-lib.js -o spec/test-main.js && ./node_modules/karma/bin/karma start --browsers Firefox,PhantomJS --single-run"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
}
}