-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.05 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
73
74
75
{
"name": "timing-functions",
"version": "2.0.1",
"description": "Set of universal utility functions around timing and scheduling in JavaScript",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/aurel-l/timing-functions.git"
},
"main": "dist/timing-functions.cjs.js",
"module": "dist/timing-functions.es.mjs",
"jsnext:main": "dist/timing-functions.es.mjs",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"test:unit": "echo \"no unit test yet\"",
"test:lint": "eslint --ignore-path .gitignore \"./**/*.js\"",
"test:types": "tsc --noEmit src/index.ts",
"test": "npm-run-all test:*",
"bundle": "rollup -c",
"generate-types": "tsc --emitDeclarationOnly --declaration --outDir dist src/index.ts",
"build": "npm-run-all clean bundle generate-types",
"prepublishOnly": "npm run build"
},
"keywords": [
"timing",
"setTimeout",
"setImmediate",
"requestAnimationFrame",
"requestIdleCallback",
"rAF",
"rIC",
"JavaScript",
"node",
"browser",
"worker",
"JS",
"utility",
"function",
"sleep",
"schedule",
"timeout",
"scheduler",
"await",
"async",
"Promise"
],
"author": "Aurélien Luciani <luciani@ebi.ac.uk> (https://github.com/aurel-l)",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"npm-run-all": "4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.28.2",
"tslib": "^2.0.2",
"typescript": "^4.0.3"
},
"dependencies": {}
}