-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "html-elm",
"version": "4.0.0",
"description": "Convert HTML and SVG to Elm code",
"repository": "github:hendriklammers/html-elm",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf lib coverage",
"lint": "eslint src/ --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"start": "nodemon --watch src/**/*.ts --exec ts-node src/index.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [
"elm",
"html",
"parser",
"convert",
"cli"
],
"author": "Hendrik Lammers <lammers@gmail.com> (http://www.hendriklammers.com)",
"license": "MIT",
"dependencies": {
"commander": "^9.4.1",
"htmlparser2": "^8.0.1"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"bin": {
"html-elm": "lib/cli.js"
},
"files": [
"lib/**/*"
]
}