This repository was archived by the owner on Oct 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.77 KB
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
{
"name": "@furystack/jsx-shades",
"version": "1.0.0-alpha.2",
"description": "Lightweight react-style jsx component factory that produces native shadow DOM custom elements",
"main": "dist/index.js",
"files": [
"dist",
"src",
"test"
],
"scripts": {
"precommit": "npm run test",
"commit": "git-cz",
"pretest": "npm run build:test",
"test": "rimraf coverage && nyc mocha -p tsconfig.test.json ./temp/test/index.js",
"build:test": "tslint --project tsconfig.test.json && rimraf temp && tsc -p tsconfig.test.json",
"prebuild": "tslint --project tsconfig.json",
"build": "rimraf dist && tsc -p tsconfig.json",
"prepublishOnly": "npm run test && npm run build",
"publish:development": "npm run build && npm t && npm run typedoc && npm publish --tag development"
},
"repository": {
"type": "git",
"url": "https://github.com/furystack/jsx-shades.git"
},
"keywords": [
"JSX",
"Shadow DOM",
"Components",
"Native browser APIs"
],
"publishConfig": {
"access": "public"
},
"author": "gallay.lajos@gmail.com",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/furystack/jsx-shades/issues"
},
"nyc": {
"exclude": [
"temp/test/**/*.*",
"temp/src/**/I*.js"
],
"include": "temp/src/**/*.*",
"check-coverage": false,
"cache": true,
"all": true,
"reporter": [
"lcov",
"text-summary",
"json"
]
},
"homepage": "https://github.com/furystack/jsx-shades",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"typings": "./dist/index.d.ts"
}