-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 891 Bytes
/
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
{
"name": "betteregex",
"version": "1.1.0",
"description": "Write better, more readable regexes",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "npm run lint && jest --config jest.config.json",
"lint": "xo",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SiddharthShyniben/betteregex.git"
},
"keywords": [
"regex",
"regexp"
],
"author": "SiddharthShyniben <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/SiddharthShyniben/betteregex/issues"
},
"homepage": "https://github.com/SiddharthShyniben/betteregex#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4",
"xo": "^0.40.1"
}
}