-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 937 Bytes
/
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
{
"name": "oauth-cli",
"version": "1.0.0",
"description": "Package to add OAuth to CLI programs",
"main": "index.js",
"scripts": {
"google-sample": "node ./example/google.js",
"auth0-sample": "node ./example/auth0.js",
"test": "./node_modules/mocha/bin/mocha",
"cover": "./node_modules/.bin/istanbul cover _mocha",
"lint": "./node_modules/.bin/eslint ./",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"author": "Marcos Castany",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.4",
"opener": "^1.4.3",
"proxyquire": "^1.8.0",
"randomstring": "^1.1.5",
"request": "^2.81.0",
"winston": "^2.3.1"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^4.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"sinon": "^3.2.1"
}
}