-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
46
47
48
49
50
51
{
"name": "@fr0st/query",
"version": "3.3.0",
"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.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"eslint": "^9.26.0",
"mocha": "^11.2.2",
"puppeteer": "^24.8.2",
"rollup": "^4.40.2",
"terser": "^5.39.0"
},
"dependencies": {
"@fr0st/core": "^2.1.8"
}
}