This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "css-selector-builder",
"version": "0.0.0",
"private": false,
"description": "Developer friendly CSS selector builder API",
"homepage": "https://github.com/k3nsei/css-selector-builder",
"bugs": {
"url": "https://github.com/k3nsei/css-selector-builder/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/k3nsei/css-selector-builder.git"
},
"license": "GPL-3.0",
"author": {
"name": "Piotr Stępniewski",
"email": "[email protected]",
"url": "https://github.com/k3nsei"
},
"exports": {
"default": "./dist/index.mjs",
"node": "./dist/index.cjs"
},
"main": "dist/index.cjs",
"browser": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node scripts/build.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "is-ci || husky install",
"lint": "echo \"to be implemented\"",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest",
"test:coverage": "jest --coverage",
"types-emit": "tsc",
"types-emit:watch": "tsc --watch",
"types-check": "tsc --noEmit",
"types-check:watch": "tsc --noEmit --watch"
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@types/jest": "26.0.22",
"@types/node": "14.14.37",
"esbuild": "0.10.2",
"husky": "5.2.0",
"import-sort": "6.0.0",
"import-sort-style-module": "6.0.0",
"is-ci": "3.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"pinst": "2.1.6",
"prettier": "2.2.1",
"prettier-plugin-import-sort": "0.0.6",
"prettier-plugin-packagejson": "2.2.10",
"ts-jest": "26.5.4",
"typedoc": "0.20.34",
"typescript": "4.2.3"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.5.0",
"yarn": "1.22.10"
}
}