-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.22 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
{
"name": "parcelify",
"version": "2.2.1",
"description": "Create css bundles from npm packages using the browserify dependency graph.",
"main": "index.js",
"bin": {
"parcelify": "bin/cmd.js"
},
"dependencies": {
"async": "~0.2.10",
"glob": "~3.2.9",
"globwatcher": "~1.2.3",
"inherits": "~2.0.1",
"minimist": "0.0.8",
"mkdirp": "~0.3.5",
"npmlog": "0.0.6",
"parcel-map": "^3.0.0",
"resolve": "~0.6.1",
"shasum": "~1.0.1",
"stream-combiner": "^0.2.2",
"through2": "~0.6.3",
"toposort": "~0.2.10",
"underscore": "~1.6.0"
},
"devDependencies": {
"browserify": "^9.0.8",
"sass-css-stream": "^0.1.4",
"tape": "~2.3.2"
},
"scripts": {
"test": "tape test/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/rotundasoftware/parcelify.git"
},
"homepage": "https://github.com/rotundasoftware/parcelify",
"keywords": [
"parcel",
"asset",
"css",
"commonjs",
"browserify"
],
"author": {
"name": "Rotunda Software",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rotundasoftware/parcelify/blob/master/LICENSE"
}
]
}