forked from fczbkk/css-selector-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.11 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
{
"name": "css-selector-generator",
"title": "CSS Selector Generator",
"version": "3.5.4",
"description": "JavaScript object that creates unique CSS selector for given element.",
"author": "Riki Fridrich <[email protected]> (https://fczbkk.com)",
"license": "MIT",
"type": "module",
"main": "build/index.js",
"exports": {
".": "./build/index.js",
"./esm": "./esm/index.js"
},
"module": "./esm/index.js",
"types": "types/index.d.ts",
"scripts": {
"clean": "rimraf ./esm ./types",
"test": "karma start ./tools/karma.conf.js",
"dev": "npm run test -- --no-single-run --auto-watch",
"prebuild": "npm run clean && npm run lint:build",
"build": "npm run build:umd && npm run build:esm",
"build:umd": "webpack --config ./tools/webpack.build.js",
"build:esm": "tsc --project ./tsconfig.esm.json",
"lint": "eslint ./src/**/*.ts ./test/**/*.js ./tools/**/*.js --config .eslintrc.cjs",
"lint:build": "npm run lint -- --max-warnings 0",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"postversion": "git push && git push --tags && npm publish --access=public",
"version": "npm run build && npm run changelog && git add -A"
},
"devDependencies": {
"@fczbkk/eslint-config": "^1.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chai": "^4.3.4",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.6.0",
"husky": "^7.0.4",
"karma": "^6.3.10",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"mocha": "^9.1.3",
"raw-loader": "^4.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fczbkk/css-selector-generator.git"
},
"homepage": "https://github.com/fczbkk/css-selector-generator/",
"dependencies": {
"cartesian": "^1.0.1",
"iselement": "^1.1.4"
}
}