forked from winauth/SteamAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1000 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
38
39
40
{
"name": "steamauth",
"version": "0.1.5",
"description": "SteamGuard code generator and trade confirmations",
"author": "Colin Mackie <[email protected]>",
"main": "index.js",
"dependencies": {
"underscore": "^1.8.3",
"rfc-3548-b32": "^0.0.2",
"request": "^2.67.0",
"async": "^1.5.0",
"node-rsa": "^0.2.26",
"cheerio": "^0.19.0",
"bunyan": "^1.5.1"
},
"devDependencies": {
"mocha": "latest",
"should": "latest",
"nock": "latest",
"jshint": "latest",
"uglify-js": "latest",
"rimraf": "latest"
},
"scripts": {
"lint": "jshint **.js || true",
"wint": "for %f in (*.js) do jshint %f",
"uglify": "uglifyjs index.js -mt -o dist/steamauth.min.js",
"test": "node_modules/.bin/mocha",
"clean": "rimraf dist",
"build": "npm run clean && npm run wint && mkdir dist && npm run uglify"
},
"keywords": [
"WinAuth",
"SteamGuard",
"Steam",
"Trading",
"Confirmations"
],
"license": "GPLv3"
}