This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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
61
62
63
64
65
66
67
68
69
70
{
"name": "snapchat",
"description": "Nodejs client for the unofficial Snapchat API",
"version": "2.0.2",
"author": {
"name": "Travis Fischer",
"email": "fisch0920@gmail.com",
"url": "https://github.com/fisch0920"
},
"bugs": {
"url": "https://github.com/fisch0920/snapchat/issues"
},
"dependencies": {
"async": "^1.4.2",
"bignum": "^0.11.0",
"bluebird": "^2.9.34",
"configstore": "^1.2.1",
"debug": "^2.1.0",
"enum": "^2.1.0",
"file-type": "^2.10.2",
"iconv-lite": "^0.4.11",
"inherits": "^2.0.1",
"jszip": "^2.5.0",
"node-rsa": "^0.2.25",
"phone": "^1.0.4",
"request": "^2.61.0",
"url-join": "0.0.1",
"ursa": "^0.9.1",
"uuid": "^3.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^10.0.0",
"dotenv": "^1.2.0",
"gulp": "^3.9.0",
"gulp-gh-pages": "^0.5.2",
"gulp-npm-run": "0.0.1",
"ink-docstrap": "git://github.com/fisch0920/docstrap",
"jsdoc": "^3.3.2",
"standard": "^4.0.1",
"tape": "^4.0.0",
"uglify-js": "^2.4.15"
},
"keywords": [
"snapchat",
"api",
"unofficial",
"snap",
"chat",
"sc",
"image",
"video",
"REST",
"client"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/fisch0920/snapchat.git"
},
"scripts": {
"build": "browserify -s Snapchat -e ./ | uglifyjs -m > snapchat.min.js",
"build-debug": "browserify -s Snapchat -e ./ > snapchat.debug.js",
"docs": "node ./node_modules/jsdoc/jsdoc.js -c .jsdoc.json -R README.md",
"size": "npm run build && cat snapchat.min.js | gzip | wc -c",
"test": "standard && tape test/*.js",
"test-node": "tape test/*.js"
}
}