-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "sls-sample-app",
"version": "1.0.0",
"description": "StrongLoop Suite Sample Application",
"main": "app.js",
"dependencies": {
"loopback": "git+ssh://[email protected]/strongloop/loopback.git",
"loopback-connector-rest": "git+ssh://[email protected]/strongloop/loopback-connector-rest.git",
"request": "~2.21.0",
"strong-task-emitter": "~0.0.4",
"rc": "~0.3.0"
},
"optionalDependencies": {
"strong-cluster-control": "~0.1.0",
"strong-agent": "~0.2.15",
"loopback-connector-oracle": "git+ssh://[email protected]/strongloop/loopback-connector-oracle.git",
"loopback-connector-mongodb": "git+ssh://[email protected]/strongloop/loopback-connector-mongodb.git",
"weighted": "~0.2.2",
"shuffle": "~0.2.1",
"text-table": "~0.1.1"
},
"devDependencies": {
"supertest": "~0.7.1",
"blanket": "~1.1.5",
"mocha": "~1.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/sls-sample-app.git"
},
"scripts": {
"install": "node build/readme.js",
"test": "mocha -b -R spec",
"blanket": {
"pattern": "//^((?!(node_modules|test)).)*$/"
},
"coverage": "mocha -r blanket -R html-cov > coverage_sls-sample-app.html"
},
"author": "Ritchie Martori",
"private": false,
"readmeFilename": "README.md",
"license": "MIT"
}