-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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
54
55
56
57
58
59
{
"name": "aliasify-mocks",
"version": "0.1.0",
"description": "NPM package to mock all modules founded into specific directories",
"main": "index.js",
"scripts": {
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/troianoandres/aliasify-mocks.git"
},
"keywords": [
"aliasify",
"mocks",
"aliasify-mocks"
],
"author": "Andres Troiano",
"license": "MIT",
"bugs": {
"url": "https://github.com/troianoandres/aliasify-mocks/issues"
},
"homepage": "https://github.com/troianoandres/aliasify-mocks#readme",
"dependencies": {
"lodash": "^4.6.1",
"path": "^0.12.7",
"validator": "^5.1.0"
},
"devDependencies": {
"aliasify": "^1.9.0",
"chai": "^3.2.0",
"coverageify": "^1.0.4",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-exec": "^2.1.2",
"gulp-rimraf": "^0.2.0",
"karma": "^0.13.2",
"karma-browserify": "^4.2.1",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.2.6",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"mocha": "^2.2.5",
"phantomjs": "^1.9.18",
"rewireify": "^0.2.0",
"run-sequence": "^1.1.5",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"yargs": "^4.3.1"
},
"aliasify": {
"aliases": {
"path": "lib-test/modules-mocks/path-mock.js",
"fs": "lib-test/modules-mocks/fs-mock.js",
"validator": "lib-test/modules-mocks/validator-mock.js",
"./src/search-for-mocks": "lib-test/modules-mocks/search-for-mocks-mock.js"
}
}
}