UNPKG

1.25 kBJSONView Raw
1{
2 "name": "editorconfig",
3 "version": "0.13.2",
4 "description": "EditorConfig File Locator and Interpreter for Node.js",
5 "keywords": [
6 "editorconfig",
7 "core"
8 ],
9 "main": "editorconfig.js",
10 "bin": {
11 "editorconfig": "bin/editorconfig"
12 },
13 "contributors": [
14 "Hong Xu (topbug.net)",
15 "Jed Mao (https://github.com/jedmao/)",
16 "Trey Hunner (http://treyhunner.com)"
17 ],
18 "directories": {
19 "bin": "./bin",
20 "lib": "./lib"
21 },
22 "scripts": {
23 "pretest": "cmake .",
24 "test": "npm run lint && ctest .",
25 "test-verbose": "npm run lint && ctest -VV --output-on-failure .",
26 "lint": "eclint check --indent_size ignore editorconfig.js README.md \"bin/**\" \"lib/**\""
27 },
28 "repository": {
29 "type": "git",
30 "url": "git://github.com/editorconfig/editorconfig-core-js.git"
31 },
32 "bugs": "https://github.com/editorconfig/editorconfig-core-js/issues",
33 "author": "EditorConfig Team",
34 "license": {
35 "type": "MIT",
36 "url": "http://editorconfig.mit-license.org/2012"
37 },
38 "dependencies": {
39 "bluebird": "^3.0.5",
40 "commander": "^2.9.0",
41 "lru-cache": "^3.2.0",
42 "sigmund": "^1.0.1"
43 },
44 "devDependencies": {
45 "eclint": "^1.1.5",
46 "mocha": "^2.3.4",
47 "should": "^7.1.1"
48 }
49}