This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
{
"name": "tsubaki",
"version": "1.3.14",
"description": "Promisify with native promises.",
"scripts": {
"build": "npm run lint && tsup",
"lint": "prettier --check . && eslint src --ext mjs,js,ts",
"format": "prettier --write . && eslint src --ext mjs,js,ts --fix",
"test": "npm run lint && jest --pass-with-no-tests",
"test:ci": "jest --no-stack-trace --verbose --pass-with-no-tests",
"prepare": "is-ci || husky install",
"prerelease": "npm run build",
"release": "standard-version --preset angular"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"author": "iCrawl <icrawltogo@gmail.com>",
"contributors": [
{
"name": "vzwGrey"
}
],
"license": "MIT",
"keywords": [
"promisify",
"native",
"promises"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iCrawl/tsubaki.git"
},
"bugs": {
"url": "https://github.com/iCrawl/tsubaki/issues"
},
"homepage": "https://github.com/iCrawl/tsubaki#readme",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.8.0",
"eslint-config-marine": "^9.3.2",
"eslint-config-prettier": "^8.3.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.0.2",
"lint-staged": "^13.0.1",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"tsup": "^6.1.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=6.0.0"
}
}