-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.33 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
{
"name": "sign-pad",
"version": "1.3.5-snapshot",
"description": "sign-pad web component provides a signature drawing surface and related services",
"keywords": [
"sign",
"signature",
"digital",
"draw",
"pad",
"security",
"identity",
"image",
"svg",
"png",
"jpg",
"jpeg"
],
"homepage": "https://github.com/gullerya/sign-pad",
"bugs": {
"url": "https://github.com/gullerya/sign-pad/issues",
"email": "[email protected]"
},
"license": "ISC",
"files": [
"dist"
],
"main": "dist/sign-pad.min.js",
"browser": "dist/sign-pad.min.js",
"type": "module",
"author": {
"name": "Yuri Guller",
"email": "[email protected]"
},
"funding": [
{
"url": "https://paypal.me/gullerya?locale.x=en_US"
},
{
"url": "https://tidelift.com/funding/github/npm/sign-pad"
}
],
"repository": {
"type": "git",
"url": "https://github.com/gullerya/sign-pad"
},
"scripts": {
"build": "node ./ci/tools/build-dist.js",
"lint": "eslint -c ./ci/.eslintrc.json ./ci/**/*.js ./src/**/*.js ./tests/**/*.js",
"test": "node ./node_modules/just-test/dist/tests-runner/run-tests.js --config=./tests/tests-runner-config.json",
"bump": "node ./ci/tools/version-utils.js"
},
"devDependencies": {
"eslint": "^7.30.0",
"fs-extra": "^10.0.0",
"just-test": "2.3.2",
"puppeteer": "^10.1.0",
"uglify-es": "^3.3.9"
}
}