This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
forked from KayLeung/dropletOnce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.04 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "once-dom",
"title": "once",
"description": "Act on elements only once.",
"version": "3.5.2",
"keywords": [
"dom"
],
"repo": "theodoreb/once",
"homepage": "https://github.com/theodoreb/once",
"author": "Théodore Biadala (https://github.com/theodoreb)",
"maintainers": [
"Théodore Biadala (https://github.com/theodoreb)",
"Kay Leung (https://github.com/KayLeung)"
],
"type": "module",
"main": "src/once.js",
"module": "dist/once.esm.js",
"umd": "dist/once.umd.js",
"browser": "dist/once.min.js",
"files": [
"src",
"dist",
"docs",
"SECURITY.md"
],
"contributors": [
"KayLeung (https://github.com/KayLeung)",
"JohnAlbin (https://github.com/JohnAlbin)",
"Rob Loach (https://github.com/RobLoach)",
"theodoreb (https://github.com/theodoreb)"
],
"repository": {
"type": "git",
"url": "https://github.com/theodoreb/once.git"
},
"bugs": {
"url": "https://github.com/theodoreb/once/issues"
},
"licenses": [
{
"type": "GPL-2.0",
"url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html"
}
],
"devDependencies": {
"@esm-bundle/chai": "^4.1.5",
"@open-wc/testing": "^2.5.32",
"@rollup/plugin-buble": "^0.21.3",
"@web/test-runner": "^0.9.8",
"@web/test-runner-playwright": "^0.6.4",
"eslint": "^7.11.0",
"eslint-config-drupal": "^5.0.2",
"jsdoc-to-markdown": "^6.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"prebuild": "npm run lint && npm run docs",
"build": "rimraf dist/* && rollup -c",
"pretest": "npm run lint",
"test": "web-test-runner 'test/*.test.html' --node-resolve --playwright --browsers chromium firefox",
"validate": "npm test",
"lint": "eslint src/ test/ rollup.config.js",
"docs": "jsdoc2md src/once.js > docs/API.md",
"preversion": "npm test",
"version": "npm run build && git add -A dist -f",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test && npm run build"
}
}