-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "browserify-crawl",
"version": "0.3.8",
"description": "Recursively crawl and scan directories, compiling multiple js files into an output directory",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"example": "node example/index.js",
"test": "npm run lint && tape test/index.js",
"lint": "dependency-check package.json && standard",
"preversion": "npm run test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayrbolton/browserify-crawl.git"
},
"author": "jay r bolton <[email protected]> (http://jayrbolton.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jayrbolton/browserify-crawl/issues"
},
"homepage": "https://github.com/jayrbolton/browserify-crawl#readme",
"dependencies": {
"browserify": "15.2.0",
"common-shakeify": "0.4.5",
"exorcist": "1.0.0",
"fs-extra": "5.0.0",
"glob": "7.1.2",
"uglify-js": "3.3.8",
"uglifyify": "4.0.5",
"unassertify": "2.1.0",
"watchify": "3.9.0",
"zlib": "1.0.5"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"dependency-check": "^3.0.0",
"run-parallel": "^1.1.6",
"run-waterfall": "^1.1.3",
"standard": "^10.0.3",
"tape": "^4.8.0"
},
"standard": {
"ignore": [
"/example/**"
]
}
}