UNPKG

1.75 kBJSONView Raw
1{
2 "name": "editorconfig",
3 "version": "0.15.1",
4 "description": "EditorConfig File Locator and Interpreter for Node.js",
5 "keywords": [
6 "editorconfig",
7 "core"
8 ],
9 "main": "src/index.js",
10 "contributors": [
11 "Hong Xu (topbug.net)",
12 "Jed Mao (https://github.com/jedmao/)",
13 "Trey Hunner (http://treyhunner.com)"
14 ],
15 "directories": {
16 "bin": "./bin",
17 "lib": "./lib"
18 },
19 "scripts": {
20 "clean": "rimraf dist",
21 "prebuild": "npm run clean",
22 "build": "tsc",
23 "pretest": "npm run lint && npm run build && npm run copy && cmake .",
24 "test": "ctest .",
25 "pretest:ci": "npm run pretest",
26 "test:ci": "ctest -VV --output-on-failure .",
27 "lint": "npm run eclint && npm run tslint",
28 "eclint": "eclint check --indent_size ignore \"src/**\"",
29 "tslint": "tslint --project tsconfig.json --exclude package.json",
30 "copy": "cpy .npmignore LICENSE README.md CHANGELOG.md dist && cpy bin/* dist/bin && cpy src/lib/fnmatch*.* dist/src/lib",
31 "prepub": "npm run lint && npm run build && npm run copy",
32 "pub": "npm publish ./dist"
33 },
34 "repository": {
35 "type": "git",
36 "url": "git://github.com/editorconfig/editorconfig-core-js.git"
37 },
38 "bugs": "https://github.com/editorconfig/editorconfig-core-js/issues",
39 "author": "EditorConfig Team",
40 "license": "MIT",
41 "dependencies": {
42 "@types/node": "^10.11.7",
43 "@types/semver": "^5.5.0",
44 "commander": "^2.19.0",
45 "lru-cache": "^4.1.3",
46 "semver": "^5.6.0",
47 "sigmund": "^1.0.1"
48 },
49 "devDependencies": {
50 "@types/mocha": "^5.2.5",
51 "cpy-cli": "^2.0.0",
52 "eclint": "^2.8.0",
53 "mocha": "^5.2.0",
54 "rimraf": "^2.6.2",
55 "should": "^13.2.3",
56 "tslint": "^5.11.0",
57 "typescript": "^3.1.3"
58 }
59}