forked from dsheiko/cjsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
60
61
62
{
"name": "cjsc",
"description": "Utility that compiles CommonJS (NodeJS) modules into a single JavaScript file suitable for the browser",
"version": "1.0.10",
"author": "Dmitry Sheiko <[email protected]>",
"main": "cjsc-module.js",
"bin": {
"cjsc": "./cjsc"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"require",
"commonjs",
"npm",
"javascript",
"optimizer",
"bundling",
"bundler",
"modules"
],
"dependencies": {
"async": "^1.5.0",
"cli-color": "^0.3.2",
"esprima": "^2.7.0",
"source-map": "*",
"subarg": "^1.0.0",
"uglify-js": ">=2.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "~0.4.3",
"grunt-contrib-qunit": "*",
"grunt-jscodesniffer": "*",
"grunt-mocha-cli": "*",
"mocha": "*",
"qunitjs": "*",
"should": "*",
"through2": "^0.6.3"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/fawek/codepainter/raw/master/LICENSE"
}
],
"maintainers": [
{
"name": "Dmitry Sheiko",
"email": "[email protected]",
"web": "http://dsheiko.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dsheiko/cjsc"
}
}