-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "sails-hook-rewire",
"description": "Installable sailsjs hook that lets you rewire sails components during tests",
"author": "Postman Labs <[email protected]>",
"contributors": [
"Akshay Bist <[email protected]>",
"Shamasis Bhattacharya <[email protected]>"
],
"license": "Apache-2.0",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/postmanlabs/sails-hook-rewire.git"
},
"bugs": {
"url": "https://github.com/postmanlabs/sails-hook-rewire/issues"
},
"main": "index.js",
"keywords": [
"sails",
"sails hook",
"rewire",
"testing",
"stubbing"
],
"scripts": {
"test": "scripts/test/test.sh",
"check": "scripts/check/check.sh",
"check-infra": "scripts/check/check-infra.sh",
"lint": "scripts/lint/lint.sh"
},
"dependencies": {
"async": "1.5.0",
"rewire": "2.5.1",
"sails-util": "0.10.6"
},
"devDependencies": {
"expect.js": "0.3.1",
"istanbul": "0.4.1",
"js-beautify": "1.5.10",
"jscs": "2.7.0",
"jshint": "2.8.0",
"mocha": "2.3.4",
"sails": "0.11.3",
"supertest": "1.1.0"
},
"sails": {
"isHook": true
}
}