-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "@downpourdigital/scheduler",
"version": "1.0.0",
"description": "A simple render task scheduler",
"main": "dist/cjs/scheduler.js",
"module": "dist/esm/scheduler.js",
"repository": "https://github.com/DOWNPOURDIGITAL/scheduler.git",
"author": "johh <[email protected]>",
"license": "BSD-4-Clause",
"private": false,
"keywords": [
"render",
"scheduler",
"task",
"loop",
"deferred"
],
"scripts": {
"build": "rollup -c",
"declaration": "tsc --emitDeclarationOnly",
"type-check": "tsc --noEmit",
"dev": "rollup -c -w",
"lint": "eslint --ext .ts,.tsx,.js src/"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/gl-matrix": "^2.4.5",
"@typescript-eslint/eslint-plugin": "^2",
"@typescript-eslint/parser": "^2",
"babel-eslint": "^10.0.2",
"eslint": "^6",
"eslint-config-airbnb-typescript": "^7",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"rollup": "^2.22.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.1",
"ts-transformer-properties-rename": "^0.8.0",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --max-warnings 1"
}
}