-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "mabiki",
"version": "1.0.1",
"description": "Provides throttle and debounce",
"main": "./lib/mabiki.js",
"module": "./module/mabiki.js",
"exports": {
"require": "./lib/mabiki.js",
"import": "./module/mabiki.js",
"default": "./lib/mabiki.js"
},
"types": "lib/mabiki.d.ts",
"repository": "https://github.com/hokaccha/mabiki",
"homepage": "https://github.com/hokaccha/mabiki",
"bugs": {
"url": "https://github.com/hokaccha/mabiki/issues"
},
"author": "Kazuhito Hokamura",
"license": "MIT",
"sideEffects": false,
"keywords": [
"debounce",
"throttle"
],
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/",
"module/",
"src/"
],
"scripts": {
"build": "tsc -p . && tsc -p ./tsconfig.module.json",
"clean": "rm -rf lib module",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint --max-warnings 0 --ext .js,.ts .",
"fix": "eslint --fix --ext .js,.ts .",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
}
}