-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.26 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.26 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "globar",
"description": "Run browserify, watchify, browserify-incremental with globs",
"version": "0.11.0",
"author": "Masaya Kamakura <kamakura.masaya@gmail.com> (https://github.com/mkamakura)",
"bin": "bin/globar",
"bugs": {
"url": "https://github.com/mkamakura/globar/issues"
},
"dependencies": {
"cross-spawn": "^4.0.0",
"execa": "^0.4.0",
"glob": "^7.0.3",
"globby": "^5.0.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015-node5": "^1.2.0",
"browserify": "*",
"browserify-incremental": "*",
"chai": "^3.5.0",
"eslint": "^3.0.1",
"eslint-plugin-babel": "^3.2.0",
"fixpack": "^2.3.1",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"npm-check": "^5.2.2",
"npm-run-all": "^2.3.0",
"power-assert": "^1.4.1",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"version-bump-prompt": "^1.5.2",
"watchify": "*"
},
"files": [
"lib",
"bin"
],
"homepage": "https://github.com/mkamakura/globar#readme",
"keywords": [
"browserify",
"browserify-incremental",
"cli",
"glob",
"watchify"
],
"license": "MIT",
"main": "bin/globar",
"peerDependencies": {
"browserify": "*",
"browserify-incremental": "*",
"watchify": "*"
},
"repository": {
"type": "git",
"url": "git+https://mkamakura@github.com/mkamakura/globar.git"
},
"scripts": {
"build": "babel src --out-dir lib --source-maps inline",
"bump": "bump --prompt --tag --push --all",
"check": "npm-check",
"clean": "rimraf lib",
"coverage": "npm-run-all build coverage:istanbul",
"coverage:istanbul": "istanbul cover _mocha --dir coverage/node -- --bail --recursive tests/fixtures tests/specs",
"eslint": "eslint src ",
"fixpack": "fixpack",
"globar": "bin/globar \"tests/sample-project/src/**/index.js\" -o tests/sample-project/dist -inc -v",
"lint": "eslint src test",
"release": "npm-run-all fixpack clean build test bump",
"test": "npm-run-all build test:mocha",
"test:mocha": "mocha --require intelli-espower-loader --bail --recursive tests/fixtures tests/specs",
"watch": "babel src --out-dir lib --watch --source-maps"
}
}