-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (43 loc) · 1.47 KB
/
package.json
File metadata and controls
44 lines (43 loc) · 1.47 KB
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
{
"name": "steam-web",
"version": "0.7.0",
"description": "A wrapper for the Steam Web API.",
"keywords": [
"steam",
"team fortress 2"
],
"author": "Aaron Tidwell <aaron.tidwell@gmail.com>",
"main": "./lib/steam",
"repository": {
"type": "git",
"url": "http://github.com/Tidwell/nodeSteam"
},
"dependencies": {
"qs": "^6.1.0"
},
"engines": [
"node >= 0.4.0"
],
"scripts": {
"test": "./node_modules/mocha/bin/mocha \"./test/**/*.spec.js\" --timeout 20000",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha \"./test/**/*.spec.js\" -- --timeout 20000",
"format-lib": "./node_modules/jsfmt/bin/jsfmt -w ./lib ./*.js",
"format-spec": "./node_modules/jsfmt/bin/jsfmt -w ./test",
"format": "npm run-script format-lib && npm run-script format-spec",
"lint-lib": "./node_modules/jshint/bin/jshint ./lib",
"lint-spec": "./node_modules/jshint/bin/jshint ./test",
"lint": "npm run-script lint-lib && npm run-script lint-spec",
"integrate": "npm run-script test && npm run-script format && npm run-script lint",
"docs": "./node_modules/.bin/jsdoc -r ./lib -d ./docs --readme README.md -t ./node_modules/docdash",
"doc-deploy": "git subtree push --prefix docs origin gh-pages"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"docdash": "^0.4.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"jsfmt": "^0.5.3",
"jshint": "^2.9.4"
}
}