forked from Quramy/eslint-plugin-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.16 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
{
"name": "@quramy/eslint-plugin-tutorial",
"version": "1.0.0",
"description": "A tutorial repository to create your first eslint rule",
"main": "lib/index.js",
"scripts": {
"start-tutorial": "rimraf \"src/rules/**/*\" && rimraf src/index.ts",
"clean": "rimraf lib",
"build": "tsc",
"test": "jest",
"prepublish": "npm run clean && npm run build"
},
"files": [
"README.md",
"package.json",
"lib"
],
"keywords": [
"eslint",
"typescript",
"example"
],
"author": "Quramy",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^4.16.6",
"@types/node": "^11.10.4",
"@typescript-eslint/parser": "^1.4.2",
"eslint": "^5.15.0",
"jest": "^23.6.0",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.4",
"typescript": "~3.4.0"
},
"dependencies": {},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}