-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.83 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "qselector",
"version": "2.3.1",
"description": "Aliases for querySelector & querySelectorAll",
"keywords": [
"query",
"querySelector",
"querySelectorAll",
"selector",
"javascript",
"browser"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bugs": {
"url": "https://github.com/lbenie/qselector/issues"
},
"homepage": "https://github.com/lbenie/qselector#readme",
"author": {
"name": "Lucien Bénié",
"email": "lucien.benie@gmail.com",
"url": "https://github.com/lbenie"
},
"repository": {
"type": "git",
"url": "https://github.com/lbenie/qselector"
},
"license": "MIT",
"scripts": {
"test": "jest --config jest.config.js --colors && stryker run",
"test:dev": "cross-env BABEL_ENV=test jest --config jest.config.js --watch",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"commit": "git-cz",
"release-major": "gulp release --semver major",
"release-minor": "gulp release --semver minor",
"release-patch": "gulp release",
"build": "npm run build:es2015 && npm run build:esm && npm run build:cjs",
"build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015",
"build:esm": "tsc --downlevelIteration --module es2015 --target es5 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs"
},
"dependencies": {
"is-dom": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/prompt": "17.7.1",
"babel-core": "6.26.3",
"babel-jest": "29.6.3",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"commitizen": "4.3.0",
"conventional-changelog": "4.0.0",
"conventional-github-releaser": "3.1.5",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.3.1",
"eslint": "8.47.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"fancy-log": "2.0.0",
"gulp": "4.0.2",
"gulp-bump": "3.2.0",
"gulp-conventional-changelog": "3.0.0",
"gulp-git": "2.10.1",
"gulp-typescript": "5.0.1",
"husky": "8.0.3",
"jest": "29.6.3",
"lint-staged": "14.0.1",
"minimist": "1.2.8",
"run-sequence": "2.2.1",
"stryker": "0.35.1",
"stryker-api": "0.24.1",
"stryker-babel-transpiler": "0.10.1",
"stryker-baseline-reporter": "1.0.3",
"stryker-html-reporter": "0.18.1",
"stryker-javascript-mutator": "0.14.1",
"stryker-jest-runner": "1.4.1",
"ts-jest": "29.1.1",
"typescript": "5.1.6",
"typescript-eslint-parser": "22.0.0"
},
"engines": {
"node": ">=8"
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}