aboutsummaryrefslogtreecommitdiff
path: root/_mint/node_modules/editorconfig/package.json
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2021-12-21 15:25:09 +0100
committerMinteck <contact@minteck.org>2021-12-21 15:25:09 +0100
commite703e51c9c09b22e3bcda9a1faf1e05897f60616 (patch)
tree4fd67a209ad6988fbf569d7dff8bc37ba45baf95 /_mint/node_modules/editorconfig/package.json
downloadmint-e703e51c9c09b22e3bcda9a1faf1e05897f60616.tar.gz
mint-e703e51c9c09b22e3bcda9a1faf1e05897f60616.tar.bz2
mint-e703e51c9c09b22e3bcda9a1faf1e05897f60616.zip
Initial commit
Diffstat (limited to '_mint/node_modules/editorconfig/package.json')
-rw-r--r--_mint/node_modules/editorconfig/package.json59
1 files changed, 59 insertions, 0 deletions
diff --git a/_mint/node_modules/editorconfig/package.json b/_mint/node_modules/editorconfig/package.json
new file mode 100644
index 0000000..3cb53cb
--- /dev/null
+++ b/_mint/node_modules/editorconfig/package.json
@@ -0,0 +1,59 @@
+{
+ "name": "editorconfig",
+ "version": "0.15.3",
+ "description": "EditorConfig File Locator and Interpreter for Node.js",
+ "keywords": [
+ "editorconfig",
+ "core"
+ ],
+ "main": "src/index.js",
+ "contributors": [
+ "Hong Xu (topbug.net)",
+ "Jed Mao (https://github.com/jedmao/)",
+ "Trey Hunner (http://treyhunner.com)"
+ ],
+ "directories": {
+ "bin": "./bin",
+ "lib": "./lib"
+ },
+ "scripts": {
+ "clean": "rimraf dist",
+ "prebuild": "npm run clean",
+ "build": "tsc",
+ "pretest": "npm run lint && npm run build && npm run copy && cmake .",
+ "test": "ctest .",
+ "pretest:ci": "npm run pretest",
+ "test:ci": "ctest -VV --output-on-failure .",
+ "lint": "npm run eclint && npm run tslint",
+ "eclint": "eclint check --indent_size ignore \"src/**\"",
+ "tslint": "tslint --project tsconfig.json --exclude package.json",
+ "copy": "cpy .npmignore LICENSE README.md CHANGELOG.md dist && cpy bin/* dist/bin && cpy src/lib/fnmatch*.* dist/src/lib",
+ "prepub": "npm run lint && npm run build && npm run copy",
+ "pub": "npm publish ./dist"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/editorconfig/editorconfig-core-js.git"
+ },
+ "bugs": "https://github.com/editorconfig/editorconfig-core-js/issues",
+ "author": "EditorConfig Team",
+ "license": "MIT",
+ "dependencies": {
+ "commander": "^2.19.0",
+ "lru-cache": "^4.1.5",
+ "semver": "^5.6.0",
+ "sigmund": "^1.0.1"
+ },
+ "devDependencies": {
+ "@types/mocha": "^5.2.6",
+ "@types/node": "^10.12.29",
+ "@types/semver": "^5.5.0",
+ "cpy-cli": "^2.0.0",
+ "eclint": "^2.8.1",
+ "mocha": "^5.2.0",
+ "rimraf": "^2.6.3",
+ "should": "^13.2.3",
+ "tslint": "^5.13.1",
+ "typescript": "^3.3.3333"
+ }
+}