-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
63 lines (63 loc) · 2.09 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
{
"name": "utils-decorators",
"version": "2.10.0",
"description": "decorators for reducing repetitive code",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@stryker-mutator/core": "^8.6.0",
"@stryker-mutator/jest-runner": "^8.6.0",
"@stryker-mutator/typescript": "^4.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-jest": "^29.7.0",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"typescript": "^5.6.3"
},
"scripts": {
"test": "npm run clean && tsc -p tsconfig.test.json --noEmit && npm run lint && jest --coverage && npm run test:mutation",
"test:unit": "npm run clean && tsc --noEmit && npm run lint && jest --clearCache && jest",
"test:mutation": "stryker run",
"lint": "eslint ./src --ext .ts --quiet",
"lint:fix": "eslint ./src --ext .ts --fix",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"clean": "rm -rf dist .stryker-tmp",
"release": "npm run clean && npm run test:unit && npm run build && npm publish",
"release:ec": "npm run clean && npm run build && npm publish"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vlio20/utils-decorators.git"
},
"keywords": [
"typescript",
"decorator",
"annotation"
],
"author": "Vlad Ioffe",
"license": "MIT",
"bugs": {
"url": "https://github.com/vlio20/utils-decorators/issues"
},
"homepage": "https://github.com/vlio20/utils-decorators#readme",
"dependencies": {
"tinyqueue": "^2.0.3"
},
"sideEffects": false
}