This repository was archived by the owner on Mar 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.56 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.56 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "gulp-di",
"version": "0.1.0",
"description": "Dependency injection framework for the Gulp streaming build system",
"main": "index.js",
"scripts": {
"test": "./node_modules/gulp-cli/bin/gulp.js semistandard mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"author": {
"name": "Matthias Thoemmes",
"email": "git@gmx.org"
},
"repository": {
"type": "git",
"url": "git://github.com/cmtt/gulp-di.git"
},
"keywords": [
"gulp",
"plugin",
"build",
"system",
"framework",
"tool",
"asset",
"pipeline",
"require",
"dependency",
"injection",
"DI",
"dependency injection",
"gulpplugin"
],
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"extract-comments": "^1.1.0",
"findup-sync": "^4.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-concat": "^2.6.1",
"gulp-istanbul": "^1.1.3",
"gulp-load-plugins": "^2.0.1",
"gulp-mocha": "^7.0.2",
"gulp-rename": "^1.4.0",
"gulp-semistandard": "^1.0.0",
"gulp-util": "^3.0.8",
"introspect": "git+https://github.com/orzarchi/node-introspect.git",
"lodash": "^4.17.15",
"pad": "^3.2.0",
"parse-stack": "^0.1.4",
"require-dir": "^1.2.0"
},
"devDependencies": {
"coveralls": "^3.0.9",
"parse-function": "^2.3.2"
},
"semistandard": {
"globals": [
"afterEach",
"assert",
"basePath",
"beforeEach",
"describe",
"it",
"getGulpInstance",
"getDiInstance"
],
"esversion": 6
}
}