forked from appdevdesigns/appdev-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 937 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 937 Bytes
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
{
"name": "appdev-core",
"version": "0.6.0",
"description": "A set of core capabilities for our appdev projects in a sails environment.",
"main": "module.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "make test",
"postinstall": "node setup/setup.js",
"postupdate": "node setup/setup.js"
},
"repository": {
"type": "git",
"url": "git://github.com/appdevdesigns/appdev-core.git"
},
"author": "Johnny Hausman",
"license": "ISC",
"bugs": {
"url": "https://github.com/appdevdesigns/appdev-core/issues"
},
"homepage": "https://github.com/appdevdesigns/appdev-core",
"dependencies": {
"ad-utils": "git://github.com/appdevdesigns/ad-utils",
"jquery-deferred": "^0.3.0",
"lodash": "^2.4.1",
"nodemailer": "^0.6.3"
},
"devDependencies": {
"mocha": "^1.18.2",
"chai": "^1.9.1",
"phantomjs": "^1.9.7-5",
"mocha-phantomjs": "^3.4.0"
}
}