-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2 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
{
"name": "most-virtual-scheduler",
"version": "1.0.0",
"description": "A virtual scheduler for @most/core",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib esm && concurrently npm:build:cjs npm:build:esm",
"build:cjs": " tsc --outDir lib ",
"build:esm": " tsc --outDir esm --module esnext",
"test": "concurrently 'npm:lint' 'npm:unit-test'",
"unit-test": "mocha -r ts-node/register 'src/**/*.test.ts'",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"precommit": "lint-staged",
"preversion": "npm test && npm run build",
"postversion": "npm publish --access=public",
"watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs-community/virtual-scheduler.git"
},
"keywords": [
"most",
"@most/core",
"mostjs",
"scheduler",
"virtual scheduler"
],
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mostjs-community/virtual-scheduler/issues"
},
"homepage": "https://github.com/mostjs-community/virtual-scheduler#readme",
"dependencies": {
"@most/disposable": "^1.3.0",
"@most/scheduler": "^1.3.0",
"@most/types": "^1.1.0"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"concurrently": "^5.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-custom-alias": "^1.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}