-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "awesome-debounce-promise",
"version": "2.1.0",
"description": "Debounce your async calls",
"author": "slorber",
"license": "MIT",
"repository": "slorber/awesome-debounce-promise",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"clean": "rm -rf dist",
"clean:all": "yarn clean && rm -rf yarn.lock node_modules",
"prettier": "prettier --write \"**/*\"",
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build"
},
"dependencies": {
"@types/debounce-promise": "^3.1.1",
"awesome-imperative-promise": "^1.0.1",
"awesome-only-resolves-last-promise": "^1.0.3",
"debounce-promise": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.6",
"cross-env": "^5.2.0",
"prettier": "^1.16.4",
"react-scripts-ts": "^3.1.0",
"rollup": "^1.2.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.19.2",
"typescript": "^3.3.3333"
},
"files": [
"dist"
]
}