-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
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
71
{
"name": "node-toolbox",
"version": "0.0.1",
"description": "Node.js applications and libraries that tend to prove useful.",
"main": "",
"directories": {},
"bin": {
"startbranch": "./src/git/start-branch.js",
"commitbranch": "./src/git/commit-branch.js",
"cleanbranch": "./src/git/clean-branch.js",
"pushbranch": "./src/git/push-branch.js",
"finishbranch": "./src/git/finish-branch.js",
"db.postgres.new": "./tools/db/pg.db.create.sh",
"db.pdo_pgsql.install": "./tools/db/pdo_pgsql.install.sh",
"node.program.new": "./tools/node/newprogram.js",
"dice": "./tools/game/dice.js"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha && pioneer",
"install-global": "npm link",
"db.postgres.new": "./tools/db/pg.db.create.sh",
"db.pdo_pgsql.install": "./tools/db/pdo_pgsql.install.sh",
"node.program.new": "node ./tools/node/newprogram.js",
"http.download.files": "./tools/http/download_all.sh",
"start-branch": "node ./src/git/start-branch.js",
"commit-branch": "node ./src/git/commit-branch.js",
"clean-branch": "node ./src/git/clean-branch.js",
"push-branch": "node ./src/git/push-branch.js",
"finish-branch": "node ./src/git/finish-branch.js"
},
"repository": {
"type": "git",
"url": "https://github.com/storjarn/node-toolbox.git"
},
"keywords": [
"Javascript",
"class",
"library",
"Node.js"
],
"author": {
"name": "Christopher Maples"
},
"dependencies": {
"aliasify": "*",
"bluebird": "2.2.*",
"browserify": "*",
"commander": "1.*.*",
"ee-class": "git://github.com/storjarn/ee-class",
"grunt": "~0.4.5",
"grunt-browserify": "*",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-qunit": "~0.5.2",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-watch": "~0.6.1",
"request": "latest"
},
"aliasify": "./tools/toolbox/aliasify.js",
"devDependencies": {
"mocha": "latest",
"should": "latest"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/storjarn/node-toolbox/issues"
},
"homepage": "https://github.com/storjarn/node-toolbox",
"readme": "node-toolbox\n======\n",
"readmeFilename": "README.md"
}