-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "@ben_12/eslint-simple-parser",
"version": "0.1.0",
"description": "Simple parser for eslint.",
"main": "dist/lib/index.js",
"type": "commonjs",
"files": [
"dist"
],
"peerDependencies": {
"eslint": ">=7.0.0"
},
"devDependencies": {
"@ben_12/eslint-plugin-dprint": "^0.7.1",
"@types/chai": "^4.3.8",
"@types/eslint": "^8.44.4",
"@types/mocha": "^10.0.2",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"chai": "^4.3.10",
"eslint": "^8.50.0",
"mocha": "^10.0.0",
"nyc": "^15.0.1",
"rimraf": "^5.0.0",
"shx": "^0.3.4",
"ts-node": "^10.0.0",
"typescript": "~5.0.0"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"codecov": "nyc report --reporter text-lcov | codecov --pipe --disable=gcov",
"lint": "eslint \"**/*.ts\"",
"test": "npm run -s lint && npm run -s test:ci",
"test:ci": "tsc && nyc mocha \"test/**/*.ts\"",
"watch": "mocha --require ts-node/register --watch --watch-files \"lib/**/*.ts,test/**/*.ts\"",
"preversion": "npm test",
"version": "npm run -s build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ben12/eslint-simple-parser.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"eslint",
"eslint-parser"
],
"author": "Benoît Moreau <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ben12/eslint-simple-parser/issues"
},
"homepage": "https://eslint-simple-parser.ben12.eu"
}