-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
52
53
{
"name": "pakertaja",
"description": "Tiny JavaScript library for building HTML elements",
"version": "1.2.2",
"author": "Rauli Laine",
"homepage": "https://github.com/RauliL/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",
"browser": "dist/pakertaja.iife.js",
"types": "index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"clean": "rimraf './dist'",
"pretest": "env NODE_ENV=test $npm_execpath run build",
"prebuild": "$npm_execpath run clean",
"prepack": "env NODE_ENV=production $npm_execpath run build",
"test": "nyc --reporter=html --reporter=text --reporter=lcov mocha"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@rollup/plugin-babel": "^6.0.4",
"babel-plugin-istanbul": "^6.1.1",
"babel-preset-minify": "^0.5.2",
"mocha": "^10.4.0",
"nodom": "^2.4.0",
"nyc": "^15.0.1",
"rimraf": "^5.0.5",
"rollup": "^4.14.3",
"should": "^13.2.3"
},
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"dist/pakertaja.js",
"dist/pakertaja.mjs",
"dist/pakertaja.iife.js"
]
}