-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "@degjs/form-mapper",
"version": "4.1.1",
"description": "Get the values of form inputs as one collective object",
"keywords": [
"DEGJS",
"forms",
"form"
],
"author": {
"name": "Anna Scheuler",
"email": "ascheuler@degdigital.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEGJS/formMapper.git"
},
"files": [
"src/formMapper.js"
],
"main": "src/formMapper.js",
"bugs": "https://github.com/DEGJS/formMapper/issues",
"scripts": {
"test": "jest",
"lint": "eslint ./src"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"eslint": "^6.8.0",
"jest": "^26.6.3"
},
"publishConfig": {
"access": "public"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"testURL": "http://localhost"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}