-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.11 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
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": "carbonium",
"version": "1.3.0",
"description": "One kilobyte library for easy DOM manipulation",
"type": "module",
"browser": "dist/bundle.iife.min.js",
"module": "dist/bundle.min.js",
"types": "dist/carbonium.d.ts",
"sideEffects": false,
"scripts": {
"prepare": "husky",
"start": "http-server -o demo/ --silent",
"build": "rollup --config --sourcemap",
"dev": "rollup --config --sourcemap --watch",
"release": "npm ci --ignore-scripts && npm run lint && npm test && npm publish",
"pretest": "npm run build",
"test": "playwright test",
"playwright:install": "playwright install --with-deps chromium firefox",
"lint": "eslint .",
"prettier": "prettier --config .prettierrc.json src/**/*.ts *.json --write",
"prettier:staged": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwinm/carbonium.git"
},
"files": [
"src/carbonium.ts",
"dist/carbonium.d.ts",
"dist/bundle.min.js",
"dist/bundle.min.js.map",
"dist/bundle.iife.min.js",
"dist/bundle.iife.min.js.map"
],
"keywords": [
"front-end",
"dom",
"qsa",
"jquery",
"typescript",
"front-end",
"lightweight",
"micro"
],
"author": {
"name": "Edwin Martin",
"email": "edwin@bitstorm.org",
"url": "https://bitstorm.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/edwinm/carbonium/issues"
},
"homepage": "https://github.com/edwinm/carbonium#readme",
"devDependencies": {
"@eslint/js": "9.39.4",
"@playwright/test": "1.61.1",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"@types/node": "22.19.17",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"globals": "17.4.0",
"http-server": "14.1.1",
"husky": "9.1.7",
"prettier": "3.8.1",
"pretty-quick": "4.2.2",
"rollup": "4.60.1",
"tslib": "2.8.1",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0"
}
}