-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
{
"name": "react-queue",
"version": "0.6.1",
"description": "Declarative task scheduler",
"sideEffects": false,
"scripts": {
"test": "ts-react-toolbox test",
"bootstrap": "ts-react-toolbox init",
"dev": "ts-react-toolbox dev",
"test:ci": "ts-react-toolbox test --runInBand --coverage",
"build": "ts-react-toolbox build",
"prepublish": "ts-react-toolbox build",
"release": "ts-react-toolbox release",
"lint": "ts-react-toolbox lint",
"static": "ts-react-toolbox publish",
"format": "ts-react-toolbox format",
"analyze": "ts-react-toolbox analyze"
},
"repository": "https://github.com/theKashey/react-queue/",
"keywords": [
"queue",
"react",
"task",
"scheduler"
],
"author": "theKashey <thekashey@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theKashey/react-queue/issues"
},
"devDependencies": {
"codecov": "^3.0.4",
"ts-react-toolbox": "^0.1.21"
},
"engines": {
"node": ">=8.5.0"
},
"peerDependencies": {
"react": "^16.3.0"
},
"types": "dist/es5/index.d.ts",
"main": "dist/es5/index.js",
"files": [
"dist"
],
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js"
}