-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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
{
"name": "@ottofeller/dangerules",
"version": "1.2.0",
"description": "A set of Danger.js rules common applied in OttoFeller projects.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c && tsc --declaration --emitDeclarationOnly",
"format": "ofmt src/",
"lint": "ofmt --lint src/ && olint src/",
"test": "jest --no-cache",
"typecheck": "tsc --noEmit"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@ottofeller/eslint-config-ofmt": "1.4.1",
"@ottofeller/ofmt": "1.4.1",
"@ottofeller/prettier-config-ofmt": "1.4.1",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.0",
"@types/jest": "28.1.6",
"eslint": "8.9.0",
"jest": "28.1.3",
"rollup": "2.68.0",
"ts-jest": "28.0.7",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@babel/parser": "7.17.3",
"@types/ramda": "0.27.64",
"danger": ">=11.0.2",
"ramda": "0.28.0"
},
"peerDependencies": {
"danger": ">=11.0.2"
},
"eslintConfig": {
"extends": "@ottofeller/eslint-config-ofmt/eslint.quality.cjs"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"globals": {
"ts-jest": {
"tsconfig": "jest.tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"modulePaths": [
"<rootDir>/src"
],
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"prettier": "@ottofeller/prettier-config-ofmt"
}