-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
77
78
{
"name": "carbonium",
"version": "1.2.4",
"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 install",
"start": "http-server -o demo/ --silent",
"build": "rollup --config --sourcemap --bundleConfigAsCjs",
"dev": "rollup --config --sourcemap --watch",
"release": "npm i --package-lock && npm run lint && npm test && npm run build && npm publish",
"test": "karma start karma.conf.cjs",
"lint": "npx eslint . --ext .js,.ts",
"prettier": "prettier --config .prettierrc.json src/**/*.ts *.json --write"
},
"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": [
"dom",
"qsa",
"jquery",
"typescript",
"front-end",
"lightweight",
"micro"
],
"author": {
"name": "Edwin Martin",
"email": "[email protected]",
"url": "https://bitstorm.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/edwinm/carbonium/issues"
},
"homepage": "https://github.com/edwinm/carbonium#readme",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@webcomponents/webcomponentsjs": "^2.8.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.4",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rollup": "^3.25.3",
"rollup-plugin-typescript2": "^0.35.0",
"tslib": "^2.6.0",
"typescript": "5.1"
}
}