forked from deployd/deployd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "deployd",
"version": "1.2.0",
"author": "Ritchie Martori",
"license": "Apache-2.0",
"description": "the simplest way to build realtime APIs for web and mobile apps",
"repository": {
"url": "git://github.com/deployd/deployd.git"
},
"engines": {
"node": ">= 4.0.0"
},
"main": "index",
"files": [
"lib",
"index.js",
"CHANGELOG.md",
"README.md"
],
"dependencies": {
"async": "^2.6.2",
"bluebird": "^3.5.3",
"cookies": "^0.7.3",
"corser": "^2.0.1",
"debug": "^2.2.0",
"doh": "^0.0.4",
"mongodb": "^3.6.0",
"qs": "^6.2.1",
"request": "2.88.0",
"scrubber": "0.0.0",
"send": "^0.16.2",
"shelljs": "^0.8.3",
"socket.io": "^1.7.4",
"underscore": "^1.9.1",
"validation": "0.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"deployd-cli": "^2.0.0",
"less": "^3.9.0",
"mocha": "^5.2.0",
"mocha-jshint": "2.3.1",
"mocha-phantomjs": "^4.1.0",
"rewire": "~3.0.2",
"sinon": "^7.2.7",
"standard-version": "^4.4.0"
},
"scripts": {
"pretest": "npm link && cd test-app && npm install && npm link deployd",
"test": "mocha --timeout 5000 --exit && cd test-app && node runtests.js",
"release": "standard-version"
}
}