source: imaps-frontend/node_modules/@humanwhocodes/config-array/package.json@ d565449

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

Update repo after prototype presentation

  • Property mode set to 100644
File size: 1.5 KB
Line 
1{
2 "name": "@humanwhocodes/config-array",
3 "version": "0.11.14",
4 "description": "Glob-based configuration matching.",
5 "author": "Nicholas C. Zakas",
6 "main": "api.js",
7 "files": [
8 "api.js"
9 ],
10 "repository": {
11 "type": "git",
12 "url": "git+https://github.com/humanwhocodes/config-array.git"
13 },
14 "bugs": {
15 "url": "https://github.com/humanwhocodes/config-array/issues"
16 },
17 "homepage": "https://github.com/humanwhocodes/config-array#readme",
18 "scripts": {
19 "build": "rollup -c",
20 "format": "nitpik",
21 "lint": "eslint *.config.js src/*.js tests/*.js",
22 "lint:fix": "eslint --fix *.config.js src/*.js tests/*.js",
23 "prepublish": "npm run build",
24 "test:coverage": "nyc --include src/*.js npm run test",
25 "test": "mocha -r esm tests/ --recursive"
26 },
27 "gitHooks": {
28 "pre-commit": "lint-staged"
29 },
30 "lint-staged": {
31 "*.js": [
32 "eslint --fix --ignore-pattern '!.eslintrc.js'"
33 ]
34 },
35 "keywords": [
36 "configuration",
37 "configarray",
38 "config file"
39 ],
40 "license": "Apache-2.0",
41 "engines": {
42 "node": ">=10.10.0"
43 },
44 "dependencies": {
45 "@humanwhocodes/object-schema": "^2.0.2",
46 "debug": "^4.3.1",
47 "minimatch": "^3.0.5"
48 },
49 "devDependencies": {
50 "@nitpik/javascript": "0.4.0",
51 "@nitpik/node": "0.0.5",
52 "chai": "4.3.10",
53 "eslint": "8.52.0",
54 "esm": "3.2.25",
55 "lint-staged": "15.0.2",
56 "mocha": "6.2.3",
57 "nyc": "15.1.0",
58 "rollup": "3.28.1",
59 "yorkie": "2.0.0"
60 }
61}
Note: See TracBrowser for help on using the repository browser.