-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "hamid.js",
"version": "0.0.2",
"description": "Trigger an action if the user is idle",
"main": "dist/lib.js",
"scripts": {
"build": "tsc --build --sourcemap",
"test": "jest",
"test:watch": "npm run test -- --watch",
"lint": "eslint src/** --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check src/**/*.js",
"mutate": "stryker run",
"prebuild": "rm -fr dist"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Fcmam5/hamid.js.git"
},
"author": "Abdeldjalil Fortas (Fcmam5)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fcmam5/hamid.js/issues"
},
"homepage": "https://github.com/Fcmam5/hamid.js#readme",
"devDependencies": {
"@stryker-mutator/core": "^6.4.2",
"@stryker-mutator/jest-runner": "^6.4.2",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
}
}