-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "html-creator",
"version": "0.7.3",
"description": "Generate HTML with node.js",
"main": "dist/index.js",
"unpkg": "dist/index.js",
"scripts": {
"jest": "jest --no-cache --config=jest.config.json",
"jest:watch": "jest --watch --no-cache --config=jest.config.json",
"lint": "eslint --ext ts,tsx src",
"test": "npm run lint && npm run bundle && npm run jest",
"bundle": "rollup -c",
"build": "npm run test && npm run bundle"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Hargne/html-creator.git"
},
"keywords": [
"html",
"build",
"generate",
"create",
"html-creator",
"node",
"node.js"
],
"author": "Johan Hargne",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hargne/html-creator/issues"
},
"homepage": "https://github.com/Hargne/html-creator#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"babel-jest": "^29.5.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"rollup": "^3.21.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/node": "^18.16.3",
"mkdirp": "^3.0.1",
"prettier": "^2.4.1"
}
}