-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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": "pakertaja",
"description": "Tiny JavaScript library for building HTML elements",
"version": "2.2.0",
"author": "Rauli Laine",
"homepage": "https://rauli.dev/pakertaja",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:RauliL/pakertaja.git"
},
"bugs": {
"url": "https://github.com/RauliL/pakertaja/issues"
},
"keywords": [
"dom"
],
"main": "dist/pakertaja.js",
"module": "dist/pakertaja.mjs",
"types": "index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"clean": "rimraf './dist'",
"prebuild": "$npm_execpath run clean",
"prepack": "cross-env NODE_ENV=production $npm_execpath run build",
"test": "vitest",
"coverage": "vitest --coverage"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@vitest/coverage-istanbul": "^2.1.8",
"babel-plugin-istanbul": "^7.0.0",
"cross-env": "^7.0.3",
"happy-dom": "^16.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.30.1",
"vitest": "^2.1.8"
},
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"dist/pakertaja.js",
"dist/pakertaja.mjs",
"dist/pakertaja.iife.js"
]
}