-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.4 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
58
59
60
{
"name": "twiz-client",
"version": "1.0.0-beta.2",
"description": "Twitter OAuth 1.0a library, gets you an access token , supports REST and STREAM apis (browser part)",
"main": "src/twiz-client_bundle.js",
"dependencies": {
"twiz-client-accesstoken": "https://github.com/gits2501/twiz-client-accesstoken",
"twiz-client-redirect": "https://github.com/gits2501/twiz-client-redirect",
"twiz-client-request": "https://github.com/gits2501/twiz-client-request",
"twiz-client-requesttoken": "https://github.com/gits2501/twiz-client-requesttoken"
},
"devDependencies": {
"browserify": "^16.2.0",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"mocha-headless-chrome": "^2.0.0",
"strictify": "^0.2.0",
"uglify-js": "^3.4.4"
},
"scripts": {
"build": "browserify ./src/twiz-client.js -t strictify --exclude btoa > ./src/twiz-client_bundle.js",
"watch": "watchify ./src/twiz-client.js --exclude btoa -o ./src/twiz-client_bundle.js --debug -v",
"start": "npm run build && npm run watch",
"lint": "eslint src/twiz-client.js",
"instrument": "istanbul instrument src/twiz-client.js --output src/twiz-client_instrumented.js",
"browserify": "./node_modules/browserify/bin/cmd.js -t strictify --exclude btoa test/tc.js -o test/tc_bundle.js",
"mocha-headless": "mocha-headless-chrome -a no-sandbox -f 'mocha-test.html?data=user%3D19&oauth_token=longAlphaNum1&oauth_verifier=longAplhaNum2' -c test/coverage.json",
"server": "node test/server.js &",
"report": "istanbul report --root test/ lcov",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "npm run server && npm run instrument && npm run browserify && npm run mocha-headless && npm run report",
"uglify": "uglifyjs src/twiz-client_bundle.js --compress --output src/twiz-client_bundle.js"
},
"keywords": [
"authentication",
"twitter",
"OAuth 1.0a",
"authorize",
"authenticate",
"stream",
"chunk",
"3 leg",
"Sign in with Twitter"
],
"repository": {
"type": "git",
"url": "https://github.com/gits2501/twiz-client.git"
},
"bugs": {
"url": "https://github.com/gits2501/twiz-client/issues"
},
"author": {
"name": "gits2501",
"url": "https://github.com/gits2501",
"email": "[email protected]"
},
"license": "GPL-3.0-only"
}