diff options
author | Nevena Bojovic <nenabojov@gmail.com> | 2022-03-01 20:05:50 +0100 |
---|---|---|
committer | Nevena Bojovic <nenabojov@gmail.com> | 2022-03-01 20:05:50 +0100 |
commit | 291803c31f829fe0d32bb3207bc11def95a7408c (patch) | |
tree | c7d43107d79291b19d8c9eceefbe91c9f9a52acf /sandbox/testAppNevena/Front/node_modules/ignore-walk/package.json | |
parent | 1fa69862057db4db53cfda5be9c24b4228ef63f7 (diff) |
Urađena test aplikacija. Povezan front i back.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/ignore-walk/package.json')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/ignore-walk/package.json | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/ignore-walk/package.json b/sandbox/testAppNevena/Front/node_modules/ignore-walk/package.json new file mode 100644 index 00000000..ec6923d1 --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/ignore-walk/package.json @@ -0,0 +1,54 @@ +{ + "name": "ignore-walk", + "version": "4.0.1", + "description": "Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.", + "main": "index.js", + "devDependencies": { + "@npmcli/lint": "^1.0.2", + "mkdirp": "^0.5.1", + "mutate-fs": "^1.1.0", + "rimraf": "^2.6.1", + "tap": "^15.0.6" + }, + "scripts": { + "test": "tap", + "posttest": "npm run lint --", + "lint": "npm run npmclilint -- \"*.*js\" \"test/**/*.*js\"", + "eslint": "eslint", + "lintfix": "npm run lint -- --fix", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags", + "npmclilint": "npmcli-lint", + "postsnap": "npm run lintfix --" + }, + "keywords": [ + "ignorefile", + "ignore", + "file", + ".gitignore", + ".npmignore", + "glob" + ], + "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", + "license": "ISC", + "repository": { + "type": "git", + "url": "git+https://github.com/isaacs/ignore-walk.git" + }, + "files": [ + "index.js" + ], + "dependencies": { + "minimatch": "^3.0.4" + }, + "tap": { + "test-env": "LC_ALL=sk", + "before": "test/00-setup.js", + "after": "test/zz-cleanup.js", + "jobs": 1 + }, + "engines": { + "node": ">=10" + } +} |