-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.18 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
{
"author": "Raine Revere",
"name": "eslint-plugin-export-default-identifier",
"description": "eslint plugin to ensure that export default must export an identifier.",
"version": "0.3.0",
"main": "lib/index.js",
"files": [
"README.md",
"package.json",
"lib"
],
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
},
"keywords": [
"eslint",
"typescript",
"example"
],
"license": "ISC",
"devDependencies": {
"@types/eslint": "^7.2.13",
"@types/node": "^15.12.2",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-docgen": "^0.4.5",
"jest": "^27.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "~4.3.2"
},
"dependencies": {},
"peerDependencies": {
"eslint": ">=7"
},
"scripts": {
"clean": "rimraf lib docs",
"build": "tsc",
"test": "jest",
"docs": "DOCGEN=1 jest",
"prepare": "npm run clean && npm run build && npm run docs"
}
}