-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
69 lines (69 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "editorconfig",
"version": "2.0.0",
"description": "EditorConfig File Locator and Interpreter for Node.js",
"keywords": [
"editorconfig",
"core"
],
"main": "./lib/index.js",
"contributors": [
"Hong Xu (topbug.net)",
"Jed Mao (https://github.com/jedmao/)",
"Trey Hunner (http://treyhunner.com)",
"Joe Hildebrand (https://github.com/hildjj/)"
],
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"scripts": {
"clean": "rimraf lib cmake_install.cmake CTestTestfile.cmake Makefile",
"prebuild": "npm run clean",
"build": "cmake . && tsc",
"pretest": "npm run build && npm run lint",
"test": "npm run test:all",
"test:all": "mocha && ctest . --preset Test",
"precoverage": "npm run build -- --inlineSourceMap",
"coverage": "c8 npm run test:all",
"postcoverage": "npm run build",
"ci": "npm run coverage -- -- -VV --output-on-failure",
"lint": "eslint .",
"prepub": "npm run lint && npm run build",
"pub": "npm publish"
},
"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": {
"@one-ini/wasm": "0.1.1",
"commander": "^12.1.0",
"minimatch": "10.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@cto.af/eslint-config": "4.1.6",
"@types/chai": "4.3.20",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"c8": "10.1.2",
"chai": "4.5.0",
"eslint": "9.11.1",
"eslint-plugin-jsdoc": "50.3.1",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"typescript": "5.5.4",
"typescript-eslint": "8.8.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}