-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "just-defer",
"version": "0.3.0",
"description": "Create a simple defer",
"main": "build/just-defer.js",
"types": "build/just-defer.d.ts",
"scripts": {
"prebuild": "rimraf ./build",
"build": "tsc",
"postbuild": "node ./postbuild",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smujmaiku/just-defer.git"
},
"author": "Michael Szmadzinski",
"license": "MIT",
"bugs": {
"url": "https://github.com/smujmaiku/just-defer/issues"
},
"homepage": "https://github.com/smujmaiku/just-defer#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^27.4.0",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.0.3"
}
}