This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.92 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "taskr-rollup",
"version": "1.0.0",
"description": "Rollup plugin for Taskr",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/caseyWebb/taskr-rollup/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caseyWebb/taskr-rollup.git"
},
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"taskr",
"taskr-plugin",
"rollup"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore ./",
"test": "jest",
"release": "standard-version --sign && git push --follow-tags"
},
"author": "Casey Webb <notcaseywebb@gmail.com>",
"peerDependencies": {
"rollup": "^2.0.0",
"taskr": "^1.1.0"
},
"devDependencies": {
"@taskr/clear": "^1.1.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.5",
"eslint": "^8.5.0",
"eslint-config-profiscience": "^7.0.1",
"jest": "^25.1.0",
"prettier": "^2.5.1",
"rollup": "^2.62.0",
"standard-version": "^9.0.0",
"taskr": "^1.1.0",
"ts-jest": "^25.0.0",
"typescript": "^3.0.3"
},
"engines": {
"node": ">= 6.0"
},
"eslintConfig": {
"extends": [
"profiscience"
],
"parserOptions": {
"project": [
"./tsconfig.json",
"./test/tsconfig.json"
]
},
"rules": {
"@typescript-eslint/no-unsafe-argument": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-return": 0
}
},
"jest": {
"collectCoverage": true,
"testMatch": [
"<rootDir>/test/**/*.ts",
"!**/tmp/**",
"!**/fixtures/**"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"watchPathIgnorePatterns": [
"<rootDir>/test/tmp"
]
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true
}
}