-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 871 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 871 Bytes
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
{
"name": "silverstripe-signaturefield",
"version": "1.0.0",
"description": "A silverstripe signature form field based on https://github.com/szimek/signature_pad",
"main": "javascript/dist/signature_pad.init.js",
"repository": "https://github.com/micschk/silverstripe-signaturefield",
"browserslist": "> 0.5%, last 2 versions, not dead",
"author": "Michael van Schaik <mic@restruct.nl>",
"license": "MIT",
"devDependencies": {
"jquery": "^3.6.3",
"parcel": "^2.8.2",
"signature_pad": "^4.1.4"
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build"
},
"targets": {
"main": {
"source": "javascript/src/signature_pad.init.js",
"includeNodeModules": true
},
"jquery": {
"source": "javascript/src/jquery.js",
"includeNodeModules": true,
"distDir": "javascript/dist"
}
}
}