-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "youemdee",
"version": "1.0.1",
"description": "Wrap a browserify/browser-pack JavaScript bundle in a Universal Module Definition (UMD) with optional external dependencies, while preserving source maps",
"main": "./src/youemdee.js",
"bin": {
"youemdee": "./bin/youemdee.js"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/CMTegner/youemdee"
},
"bugs": {
"url": "https://github.com/CMTegner/youemdee/issues"
},
"keywords": [
"umd",
"browserify",
"browser-pack",
"transform",
"sourcemap",
"rjs",
"requirejs",
"amd",
"cjs",
"commonjs",
"global",
"window"
],
"author": "Christian Tegnér <christian.tegner@gmail.com>",
"license": "ISC",
"dependencies": {
"convert-source-map": "^1.3.0",
"minimist": "^1.2.0",
"source-map": "^0.5.6",
"through2": "^2.0.3"
},
"devDependencies": {
"concat-stream": "^1.6.0",
"from2-string": "^1.1.0",
"jest": "^18.1.0"
}
}