-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "@zuze/d-queue",
"version": "2.0.0",
"description": "A ridiculously small and simple debounce queue",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"keywords": [
"queue",
"async",
"promise",
"subscription",
"event"
],
"files": [
"build"
],
"homepage": "https://github.com/zuze-lab/d-queue",
"scripts": {
"prepublishOnly": "yarn test && yarn build",
"build": "rimraf build && rollup -c",
"lint": "eslint src",
"test:ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest"
},
"author": "Adam Jenkins",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.8.7"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"coveralls": "^3.0.9",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0"
}
}