-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "plugster",
"version": "1.0.11",
"description": "Plugster is a wrapper for those who still consider jQuery as their preferred JavaScript library.",
"main": "src/plugster.js",
"scripts": {
"test": "jest",
"build": "rollup --config"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"mjs"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.mjs$": "babel-jest"
},
"testRegex": "((\\.|/*.)(spec))\\.js?$"
},
"repository": {
"type": "git",
"url": "git+https://pablo-pinargote@github.com/paranoid-software/plugster.git"
},
"author": "Paranoid Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/paranoid-software/plugster/issues"
},
"homepage": "https://github.com/paranoid-software/plugster#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"babel-jest": "^27.1.0",
"jest": "^27.1.0",
"rollup": "^2.56.3",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.20",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"jquery": "^3.6.0"
}
}