-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "@fr0st/query",
"version": "3.2.10",
"description": "fQuery is a free, open-source DOM manipulation library for JavaScript.",
"keywords": [
"dom",
"document",
"query",
"ajax",
"cookie"
],
"homepage": "https://github.com/elusivecodes/fQuery",
"bugs": {
"url": "https://github.com/elusivecodes/fQuery/issues",
"email": "elusivecodes@gmail.com"
},
"main": "src/index.js",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "npm run js-compile && npm run js-minify",
"js-compile": "rollup --config",
"js-lint": "eslint",
"js-minify": "terser --compress passes=2 --mangle --source-map \"content=dist/fquery.js.map\" --output dist/fquery.min.js dist/fquery.js",
"test": "mocha test --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/elusivecodes/fQuery.git"
},
"author": "Elusive",
"license": "MIT",
"private": false,
"devDependencies": {
"@fr0st/eslint-config": "^1.0.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^9.5.0",
"mocha": "^10.4.0",
"puppeteer": "^22.12.0",
"rollup": "^4.18.0",
"terser": "^5.31.1"
},
"dependencies": {
"@fr0st/core": "^2.1.7"
}
}