forked from Lusito/tsx-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@10nm/tsx-dom",
"version": "1.4.1",
"description": "A simple way to use tsx syntax to create native dom elements using document.createElement.",
"keywords": [
"TypeScript",
"tsx",
"jsx",
"create-element"
],
"homepage": "https://github.com/redwarnwp/tsx-dom",
"bugs": {
"url": "https://github.com/redwarnwp/tsx-dom/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/redwarnwp/tsx-dom.git"
},
"license": "MIT",
"author": "Santo Pfingsten",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "npm run lint:es && npm run lint:package && npm run lint:style",
"lint:es": "eslint \"{src,test}/**/*.{ts,tsx}\" --ext \".ts,.tsx\" --ignore-path .prettierignore",
"lint:es:fix": "npm run lint:es -- --fix",
"lint:fix": "npm run lint:es:fix && npm run lint:package:fix && npm run lint:style:fix",
"lint:package": "sort-package-json --check",
"lint:package:fix": "sort-package-json",
"lint:style": "npm run lint:style:base -- --check",
"lint:style:base": "prettier \"{src,test}/**/*.{ts,tsx,js,json}\" \"./*.{ts,tsx,js,json}\"",
"lint:style:fix": "npm run lint:style:base -- --write",
"test": "nyc mocha --require source-map-support/register --require ts-node/register \"test/**/*.tsx\""
},
"nyc": {
"all": true,
"exclude": [
"coverage/**/*",
"test/**/*",
"dist/**/*",
"**/*.d.ts",
"./*.js"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"lcov"
],
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"devDependencies": {
"@lusito/eslint-config": "^2.0.3",
"@lusito/prettier-config": "^2.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sort-package-json": "^1.57.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}