forked from VerbalExpressions/JSVerbalExpressions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "verbal-expressions",
"description": "JavaScript Regular expressions made easy",
"version": "2.0.0",
"keywords": [
"regular expressions",
"regex"
],
"homepage": "https://github.com/VerbalExpressions/JSVerbalExpressions",
"devDependencies": {
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"@wessberg/rollup-plugin-ts": "^1.1.78",
"chalk": "^2.4.2",
"eslint-config-xo-typescript": "^0.21.0",
"jest": "^24.8.0",
"pretty-format": "^24.9.0",
"rollup": "^1.27.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-terser": "^5.2.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"xo": "^0.25.3"
},
"repository": {
"type": "git",
"url": "git://github.com/VerbalExpressions/JSVerbalExpressions.git"
},
"bugs": {
"url": "https://github.com/VerbalExpressions/JSVerbalExpressions/issues"
},
"main": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"scripts": {
"jest": "jest",
"lint": "xo",
"test": "status=0; npm run lint || status=$?; npm run jest || status=$?; exit $status",
"build": "rm -rf dist && rollup -c"
},
"xo": {
"extends": "xo-typescript",
"extensions": [
"ts"
],
"rules": {
"@typescript-eslint/quotes": [
"error",
"double"
],
"@typescript-eslint/indent": [
"error",
2
],
"new-cap": "off",
"@typescript-eslint/generic-type-naming": "off",
"import/default": "off",
"import/no-unassigned-import": "off",
"prefer-named-capture-group": "off",
"@typescript-eslint/require-array-sort-compare": "off"
},
"overrides": [
{
"files": [
"test/**.test.ts"
],
"rules": {
"max-nested-callbacks": "off"
}
}
]
},
"engines": {
"node": ">=10.0.0"
}
}