-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "rollup-plugin-write-only-changes",
"version": "1.0.1",
"description": "A Rollup plugin for writing files to the output directoriy only if their contents actually changed.",
"author": "Ferdinand Prantl <[email protected]> (http://prantl.tk)",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/rollup-plugin-write-only-changes/blob/master/LICENSE"
}
],
"homepage": "http://prantlf.github.com/rollup-plugin-write-only-changes/",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/rollup-plugin-write-only-changes.git"
},
"bugs": {
"url": "http://github.com/prantlf/rollup-plugin-write-only-changes/issues"
},
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.js"
},
"files": [
"lib"
],
"engines": {
"node": ">= 14.8"
},
"scripts": {
"prepare": "rollup -c",
"lint": "denolint && tsc --noEmit test/types.ts",
"check": "teru test/*.cjs && teru-esm test/*.js",
"test": "denolint && tsc --noEmit test/types.ts && teru test/*.cjs && teru-esm test/*.js"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.16.3",
"denolint": "^2.0.9",
"rollup": "^3.21.4",
"tehanu": "^1.0.1",
"tehanu-repo-coco": "^1.0.0",
"tehanu-teru": "^1.0.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"rollup": "^1.20 || ^2 || ^3"
},
"keywords": [
"rollup",
"plugin",
"rollup-plugin",
"watch",
"changes",
"write"
]
}