-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.43 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.43 KB
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
{
"name": "@rxts/rollup",
"version": "0.0.0",
"description": "Incredible Rollup plugins, make Rollup greater",
"repository": "https://github.com/rx-ts/rollup.git",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -e named -p",
"build:ts": "tsc -b",
"clean": "rimraf packages/*/lib",
"lint": "eslint . --cache --ext md,js,ts --max-warnings 10 -f friendly",
"postinstall": "yarn-deduplicate --strategy fewer || exit 0",
"test": "jest",
"typecov": "type-coverage"
},
"devDependencies": {
"@1stg/lib-config": "^1.2.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"type-coverage": "^2.16.3",
"typescript": "^4.2.3",
"yarn-deduplicate": "^3.1.0"
},
"eslintConfig": {
"extends": "@1stg"
},
"jest": {
"collectCoverage": true,
"preset": "ts-jest"
},
"prettier": "@1stg/prettier-config",
"remarkConfig": {
"plugins": [
"@1stg/remark-config"
]
},
"renovate": {
"extends": [
"@1stg"
]
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreCatch": true,
"ignoreFiles": "*.d.ts",
"ignoreNonNullAssertion": true,
"strict": true
}
}