-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "regexp-generator",
"version": "2.3.0",
"description": "generate a regexp string by a sample and some selected strings",
"main": "build/commonjs/regExpGenerator.js",
"module": "build/esm/regExpGenerator.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc --build tsconfig.cjs.json && tsc --build tsconfig.esm.json",
"prepublishOnly": "npm run build",
"prebuild": "npm run lint && npm test && npm run types",
"lint": "eslint -c .eslintrc.commit.yml src/**/*.ts --fix",
"types": "tsc --build tsconfig.types.json"
},
"keywords": [
"regexp",
"generate",
"sample",
"strings"
],
"repository": {
"type": "git",
"url": "[email protected]:WellerQu/regExpGenerator.git"
},
"files": [
"build/*",
"src/*"
],
"author": "nix",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint -c .eslintrc.commit.yml --cache --fix"
}
}