-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.95 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.95 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
{
"name": "nightmare-xpath",
"version": "0.0.0-dev",
"description": "Nightmare plugin to select nodes by xpath expression",
"main": "index.js",
"scripts": {
"test": "npm run eslint && npm run test:cov",
"test:r": "mocha src/**/*.spec.js",
"test:cov": "npm run test:r -- --no-timeouts",
"test:w": "mocha --watch-files src/**/*.js --watch src/**/*.spec.js",
"test:d": "node --inspect -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-files src/**/*.js --watch src/**/*.spec.js",
"test:brk": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts src/**/*.spec.js",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{js,ts,tsx}\"",
"eslint:fix": "npm run eslint -- --fix",
"build": "sh Taskfile bundle_cli"
},
"license": "MIT",
"peerDependencies": {
"nightmare": "3"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/mocha": "^8.0.3",
"eslint": "^7.9.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-unicorn": "^22.0.0",
"husky": "^4.3.0",
"mocha": "^8.1.3",
"nightmare": "^3.0.2",
"precise-commits": "^1.0.2",
"prettier": "^2.1.2",
"semantic-release": "^17.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"watchexec-bin": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/unlight/nightmare-xpath.git"
},
"keywords": [
"nightmare-plugin",
"nightmare",
"xpath"
],
"bugs": {
"url": "https://github.com/unlight/nightmare-xpath/issues"
},
"homepage": "https://github.com/unlight/nightmare-xpath",
"husky": {
"hooks": {
"pre-commit": "precise-commits",
"commit-msg": "sh Taskfile commit_msg"
}
}
}