source: imaps-frontend/node_modules/glob/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2 "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
3 "name": "glob",
4 "description": "a little globber",
5 "version": "7.2.3",
6 "publishConfig": {
7 "tag": "v7-legacy"
8 },
9 "repository": {
10 "type": "git",
11 "url": "git://github.com/isaacs/node-glob.git"
12 },
13 "main": "glob.js",
14 "files": [
15 "glob.js",
16 "sync.js",
17 "common.js"
18 ],
19 "engines": {
20 "node": "*"
21 },
22 "dependencies": {
23 "fs.realpath": "^1.0.0",
24 "inflight": "^1.0.4",
25 "inherits": "2",
26 "minimatch": "^3.1.1",
27 "once": "^1.3.0",
28 "path-is-absolute": "^1.0.0"
29 },
30 "devDependencies": {
31 "memfs": "^3.2.0",
32 "mkdirp": "0",
33 "rimraf": "^2.2.8",
34 "tap": "^15.0.6",
35 "tick": "0.0.6"
36 },
37 "tap": {
38 "before": "test/00-setup.js",
39 "after": "test/zz-cleanup.js",
40 "jobs": 1
41 },
42 "scripts": {
43 "prepublish": "npm run benchclean",
44 "profclean": "rm -f v8.log profile.txt",
45 "test": "tap",
46 "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
47 "bench": "bash benchmark.sh",
48 "prof": "bash prof.sh && cat profile.txt",
49 "benchclean": "node benchclean.js"
50 },
51 "license": "ISC",
52 "funding": {
53 "url": "https://github.com/sponsors/isaacs"
54 }
55}
Note: See TracBrowser for help on using the repository browser.