forked from samrith-s/concurrent-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.07 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
{
"name": "concurrent-tasks",
"repository": "[email protected]:samrith-s/concurrent-tasks.git",
"author": "Samrith Shankar <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"core",
"strategies/*"
],
"scripts": {
"postinstall": "husky install",
"dev:core": "scripts/core/dev-core.sh",
"dev:strategy": "scripts/strategies/dev-strategy.sh",
"build:core": "scripts/core/build-core.sh",
"build:strategy": "scripts/strategies/build-strategy.sh",
"build:all": "scripts/build-all.sh",
"test:core": "scripts/core/test-core.sh",
"test:strategy": "scripts/strategies/test-strategy.sh",
"test:all": "scripts/test-all.sh",
"bump": "scripts/version.sh",
"lint": "scripts/lint.sh",
"pub": "lerna publish"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/config-lerna-scopes": "11.0.0",
"@rollup/plugin-commonjs": "16.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@types/chai": "4.2.18",
"@types/mocha": "8.2.2",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"builtin-modules": "3.1.0",
"chai": "4.3.4",
"chalk": "4.1.1",
"chokidar-cli": "2.1.0",
"eslint": "7.13.0",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"husky": "6.0.0",
"lerna": "3.22.1",
"lint-staged": "11.0.0",
"mocha": "8.4.0",
"prettier": "2.1.2",
"rollup": "2.33.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.29.0",
"size-limit": "4.7.0",
"standard-version": "9.3.0",
"ts-node": "10.0.0",
"typescript": "4.0.5"
},
"lint-staged": {
"*.ts": "eslint --cache"
}
}