-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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": "nativescript-html",
"version": "1.0.0",
"description": "HTML (and various other web platform features) for NativeScript",
"main": "dist/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"lint": "npm run eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc --project ./tsconfig.json",
"postinstall": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shirakaba/nativescript-html.git"
},
"author": "Jamie Birch",
"license": "MIT",
"bugs": {
"url": "https://github.com/shirakaba/nativescript-html/issues"
},
"homepage": "https://github.com/shirakaba/nativescript-html#readme",
"dependencies": {
"@happy-dom/global-registrator": "^9.2.1",
"happy-dom": "^9.2.1",
"set-value": "^4.1.0"
},
"peerDependencies": {
"@nativescript/core": "*"
},
"devDependencies": {
"@nativescript/core": "^8.5.0",
"@types/set-value": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.4",
"prettier-plugin-organize-attributes": "0.0.5",
"prettier-plugin-tailwindcss": "^0.2.7",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,json}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}