-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 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
{
"name": "select-element-by-mouse",
"version": "0.1.2",
"description": "Select html element by mouse",
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -d",
"test": "npm run test:unit",
"test:unit": "mocha 'test/**/*.test.{ts,tsx}'",
"test:cover": "nyc npm run test:unit",
"lint": "eslint src test --ext .ts"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/matmanjs/select-element-by-mouse.git"
},
"keywords": [
"element",
"mouse"
],
"author": "helinjiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/matmanjs/select-element-by-mouse/issues"
},
"homepage": "https://github.com/matmanjs/select-element-by-mouse#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/expect": "^24.3.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"chai": "^4.2.0",
"eslint": "^7.1.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}