-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "@degjs/form-field-appender",
"version": "2.0.2",
"description": "A module for adding and saving an infinite number of form fields.",
"keywords": [
"form",
"field",
"DEGJS"
],
"author": {
"name": "Aaron Ladage",
"email": "aladage@degdigital.com",
"url": "http://aaronladage.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEGJS/formFieldAppender.git"
},
"files": [
"src/formFieldAppender.js"
],
"main": "src/formFieldAppender.js",
"bugs": "https://github.com/DEGJS/formFieldAppender/issues",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0"
},
"scripts": {
"build-demo": "rollup --config rollup.config.js && rsync -av --exclude='js/demo.js' --exclude='node_modules/' demo/src/ demo/dist",
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": ">1%, ie 11"
}
]
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@degjs/dom-utils": "^3.0.0"
}
}