-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "frame-scheduling",
"version": "0.7.1",
"description": "Asynchronous start of functions in JS. Supports priority and interrupt execution every 16 milliseconds, to achieve 60fps.",
"scripts": {
"build": "rollup -c",
"size": "npm run build && size-limit",
"prepublishOnly": "npm run build",
"test": "npm run test:unit && npm run size",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"cli": "npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"files": [
"dist",
"src"
],
"main": "dist/frameScheduling.js",
"module": "dist/frameScheduling.esm.js",
"es2015": "dist/frameScheduling.esm2015.js",
"types": "dist/frameScheduling.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Tom910/frame-scheduling.git"
},
"keywords": [],
"size-limit": [
{
"path": "dist/frameScheduling.js",
"limit": "930 B"
}
],
"author": "Andey Marchenko <tom910ru@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tom910/frame-scheduling/issues"
},
"homepage": "https://github.com/Tom910/frame-scheduling#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"coveralls": "^3.0.3",
"jest": "^24.8.0",
"prettier": "1.17.1",
"rollup": "^1.13.1",
"rollup-plugin-typescript2": "^0.21.1",
"size-limit": "^1.3.5",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}