-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 985 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
34
35
36
37
{
"name": "vk-auth",
"version": "1.0.6",
"description": "authorization in VK social network as standalone application. Uses PhantomJS for opening VK auth form and entering credentials",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-coverage": "istanbul cover _mocha --bail --check-leaks test/",
"test-acceptance": "mocha --reporter spec --bail --check-leaks test/acceptance/"
},
"repository": "DarkXaHTeP/vk-auth",
"keywords": [
"VK",
"vkontakte",
"authentication",
"authorization",
"token",
"application"
],
"author": "DarkXaHTeP <darkxahtep@gmail.com>",
"license": "MIT",
"dependencies": {
"phantomjs-prebuilt": "2.1.14"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"chai": "3.5.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"mocha-sinon": "1.1.6",
"proxyquire": "1.7.10",
"sinon": "1.17.6",
"sinon-chai": "2.8.0"
}
}