-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.81 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
73
74
75
76
{
"name": "@chillerlan/js-library-template",
"version": "1.0.0",
"description": "JavaScript template library",
"license": "MIT",
"homepage": "https://github.com/chillerlan/js-library-template",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/chillerlan/js-library-template.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"authors": [
{
"name": "smiley",
"email": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"contributors": [
{
"name": "Contributors",
"homepage": "https://github.com/chillerlan/js-library-template/graphs/contributors"
}
],
"bugs": {
"url": "https://github.com/chillerlan/js-library-template/issues"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/codemasher"
}
],
"type": "module",
"main": "lib/main.cjs",
"browser": "./lib/browser.js",
"files": [
"dist/*",
"src/*",
"lib/*",
"LICENSE",
"README.md"
],
"dependencies": {},
"devDependencies": {
"@babel/eslint-parser": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/plugin-syntax-import-attributes": "^7.25.7",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"c8": "^8.0.1",
"chai": "^5.1.1",
"core-js": "^3.38.1",
"eslint": "^9.12.0",
"jsdoc": "^4.0.3",
"mocha": "^10.7.3",
"node": "^22.10.0",
"nyc": "^17.1.0",
"rollup": "^4.24.0",
"util": "^0.12.5"
},
"scripts": {
"lint": "eslint ./src ./tests",
"build": "rollup -c rollup.config.dist.js",
"build-src": "rollup -c rollup.config.src.js",
"jsdoc": "jsdoc -c .jsdoc.json",
"test": "mocha",
"test-with-coverage": "c8 mocha",
"prepublishOnly": "npm run lint && npm run test && rollup -c rollup.config.prepublish.js"
}
}