-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 960 Bytes
/
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
{
"name": "report-validity",
"version": "1.0.1",
"description": "reportValidity() ponyfill",
"main": "dist/report-validity.js",
"module": "dist/report-validity.mjs",
"umd:main": "dist/report-validity.umd.js",
"files": [
"dist/*.js",
"dist/*.mjs"
],
"scripts": {
"build": "microbundle --output dist --sourcemap false",
"demo": "cp dist/report-validity.umd.js demo/ && cd demo && now --public && now alias"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jelmerdemaat/report-validity.git"
},
"keywords": [
"ponyfill",
"reportValidity",
"validity",
"checkValidity",
"IE11",
"form"
],
"author": "Jelmer de Maat",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/jelmerdemaat/report-validity/issues"
},
"homepage": "https://github.com/jelmerdemaat/report-validity#readme",
"devDependencies": {
"microbundle": "^0.13.0"
}
}