-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.76 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
{
"name": "common-dom-utils",
"version": "2.0.1",
"description": "Common DOM util functions",
"main": "dist/index.js",
"module": "lib/index.js",
"sideEffects": false,
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist && rimraf lib",
"build": "yarn clean && yarn build:js && yarn build:esm",
"build:js": "tsc --declaration true --sourceMap true --downlevelIteration --removeComments true",
"build:esm": "babel src --out-dir lib --extensions '.ts,.tsx' --source-maps --ignore '**/__tets__/**,**/*.test.tsx'",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "yarn lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newying61/common-dom-utils.git"
},
"dependencies": {
"@babel/runtime": "^7.13.17"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-jest": "^26.6.3",
"concurrently": "^5.3.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"semantic-release": "^19.0.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"dist/**",
"lib/**"
],
"keywords": [
"dom utils",
"load script, css",
"shadow DOM"
],
"author": "ShoM <newying61@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/newying61/common-dom-utils/issues"
},
"homepage": "https://github.com/newying61/common-dom-utils#readme"
}