-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "@compactjs/uea",
"version": "1.1.0",
"description": "Allows a range of different ways to select HTML Elements",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle --no-sourcemap && npm run build:example",
"build:example": "microbundle build --no-sourcemap -f es -o example/dist/index.js",
"dev": "microbundle watch",
"dev:example": "microbundle watch -f es -o example/dist/index.js",
"prepack": "npm run build",
"test": "jest"
},
"files": [
"dist",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CompactJS/uea.git"
},
"keywords": [
"javascript",
"universal",
"html",
"element",
"accept"
],
"author": "Timo Bechtel",
"license": "MIT",
"bugs": {
"url": "https://github.com/CompactJS/uea/issues"
},
"homepage": "https://github.com/CompactJS/uea#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.22",
"eslint": "^7.24.0",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
}
}