-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.63 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
68
69
70
71
72
{
"name": "delounce",
"version": "1.0.0",
"description": "library with tools for delay and debouncing function invokations",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"lib",
"src",
"README.md",
"package.json"
],
"scripts": {
"compile": "npm run test && babel --modules umd -d lib/ src/",
"eslint": "eslint src",
"precommit": "lint-staged",
"prepublish": "npm run compile",
"test": "npm run eslint && jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bloomca/delounce.git"
},
"keywords": [
"sleep",
"async",
"delay",
"debounce",
"queue"
],
"ava": {
"require": [
"babel-register"
]
},
"author": "Seva Zaikov <seva.zaikov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bloomca/delounce/issues"
},
"homepage": "https://github.com/Bloomca/delounce#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"babel-register": "^6.16.3",
"coveralls": "^2.13.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^6.0.0",
"prettier": "^1.9.1",
"sinon": "^1.17.6"
},
"jest": {
"collectCoverage": true,
"testMatch": [
"**/test/*.js"
]
}
}