-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.45 KB
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
{
"name": "@degjs/form-validation-pattern",
"version": "2.0.1",
"description": "A pattern rule for the DEGJS formValidation module.",
"keywords": [
"DEGJS",
"formValidation",
"forms",
"validation"
],
"author": {
"name": "Aaron Ladage",
"email": "aladage@degdigital.com",
"url": "http://aaronladage.com"
},
"contributors": [
{
"name": "Ryan Heap",
"email": "rheap@degdigital.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEGJS/formValidation-pattern.git"
},
"bugs": "https://github.com/DEGJS/formValidation-pattern/issues",
"files": [
"src"
],
"main": "src/pattern.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest"
},
"peerDependencies": {
"@degjs/form-validation": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-jest": "^26.6.3",
"jest": "^26.6.3"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}