-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 989 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 989 Bytes
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
{
"name": "gulp-wrap-commonjs",
"description": "Wrap files into a CommonJS module definition compatible with the Node.js require() API.",
"url": "https://github.com/efacilitation/gulp-wrap-commonjs",
"author": {
"name": "efa Gmbh",
"email": "team@efa-gmbh.com"
},
"version": "0.1.14",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/efacilitation/gulp-wrap-commonjs.git"
},
"bugs": {
"url": "https://github.com/efacilitation/gulp-wrap-commonjs/issues"
},
"keywords": [
"gulp",
"gulpplugin",
"cjs",
"commonjs",
"wrapper",
"wrap"
],
"scripts": {
"prepublish": "node_modules/.bin/coffee -c index.coffee"
},
"dependencies": {
"gulp-util": "*",
"lodash": "*",
"regexp-sourcemaps": "^1.0.1",
"through2": "*",
"vinyl-sourcemaps-apply": "^0.1.4"
},
"devDependencies": {
"mocha": "*",
"expect": "*",
"coffee-script": "~1.7.1"
}
}