-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.37 KB
/
package.json
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
{
"name": "xpath-to-css-template-string-tag",
"description": "🔨 Convert XPath to Selector as Tagged template literal",
"version": "1.0.8",
"license": "MIT",
"author": {
"name": "Piotr Kowalski",
"email": "piecioshka@gmail.com",
"url": "https://piecioshka.pl/"
},
"scripts": {
"clear": "echo \"Error: no directory specified\" && exit 0",
"clear:all": "rm -rf node_modules/ && npm run clear",
"test": "npm run test:unit",
"test:unit": "jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
"coverage": "nyc npm run test && nyc report --reporter=html",
"count": "find . -name '*.js' -not -path './node_modules/*' | xargs wc -l | sort -r",
"lint": "eslint ."
},
"dependencies": {
"xpath-to-css": "^1.1.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-piecioshka": "^2.3.0",
"jasmine": "^5.1.0",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/piecioshka/xpath-to-css-template-string-tag.git"
},
"files": [
"src",
"package.json",
"README.md"
],
"keywords": [
"xpath",
"css",
"selector",
"convert",
"tagged",
"template",
"literal"
],
"main": "./src/index.js"
}