This repository has been archived by the owner on Feb 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "anvil-connect-js",
"version": "0.1.1",
"description": "Anvil Connect JavaScript client for web browsers",
"author": {
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
"contributors": [
{
"name": "Tom Kersten",
"email": "[email protected]",
"url": "http://tomkersten.com"
}
],
"main": "anvil-connect.js",
"scripts": {
"test": "karma start --single-run --browsers PhantomJS && npm run lint",
"lint": "eslint --ignore-path .gitignore . && echo Code looks good!",
"test-firefox": "karma start --single-run --browsers Firefox",
"test-chrome": "karma start --single-run --browsers Chrome",
"test-all": "karma start --single-run --browsers PhantomJS,Firefox,Chrome",
"test-all-travis": "karma start --single-run --browsers PhantomJS,Firefox,ChromeOnTravis"
},
"repository": {
"type": "git",
"url": "https://github.com/anvilresearch/connect-js.git"
},
"keywords": [
"OpenID Connect",
"OAuth 2.0",
"Identity",
"Access Control",
"Authentication",
"Authorization",
"Users"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilresearch/connect-js/issues"
},
"homepage": "https://github.com/anvilresearch/connect-js",
"devDependencies": {
"eslint": "^1.5.1",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"grunt": "^0.4.5",
"grunt-release": "^0.13.0",
"karma": "^0.12.16",
"karma-chrome-launcher": "^0.2.0",
"karma-coffee-preprocessor": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.1.5",
"karma-phantomjs-launcher": "^0.1.4"
}
}