-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.21 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
79
80
81
82
83
84
85
86
87
88
{
"name": "concat-source-text",
"version": "2.0.0",
"description": "Concatenates text source files and generates a source map for the text output.",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/concat-source-text/blob/master/LICENSE"
}
],
"homepage": "https://github.com/prantlf/concat-source-text#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/prantlf/concat-source-text.git"
},
"bugs": {
"url": "https://github.com/prantlf/concat-source-text/issues"
},
"engines": {
"node": ">=12"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepare": "lessc --source-map --source-map-inline --source-map-include-source test/widget.less test/widget-inline.css && lessc --source-map=test/widget.css.map --source-map-include-source test/widget.less test/widget.css",
"lint": "denolint",
"check": "tehanu test/*.js",
"cover": "c8 tehanu test/*.js",
"test": "denolint && c8 tehanu test/*.js",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s"
},
"c8": {
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
},
"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"
]
},
"dependencies": {
"@prantlf/convert-source-map": "^2.0.0",
"source-map": "~0.6.1"
},
"devDependencies": {
"@node-rs/deno-lint": "^1.13.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"c8": "^7.11.2",
"less": "^4.1.2",
"tehanu": "^0.2.2",
"tehanu-repo-coco": "^0.0.2",
"tehanu-teru": "^0.2.2"
},
"keywords": [
"concatenate",
"concat",
"source",
"text",
"source-map"
]
}