-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "@o.yilmaz/taskchain",
"version": "1.0.11",
"description": "Enables you to register tasks with conditions to run.",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"repository": "https://github.com/oguz-yilmaz/taskchain",
"keywords": [
"tasks",
"dispatcher",
"chain",
"task"
],
"directories": {
"test": "test"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"rimraf": "./node_modules/rimraf/bin.js",
"clean": "rimraf -rf build/*",
"build": "npm run clean && npx tsc -b .",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.22.1",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"author": "Oguz Yilmaz <[email protected]>",
"license": "ISC",
"publishConfig": {
"access": "public"
}
}