-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
94 lines (94 loc) · 2.33 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
89
90
91
92
93
94
{
"name": "broccoli-terser-sourcemap",
"version": "4.1.1",
"description": "Broccoli filter to minify files with terser while preserving their sourcemaps.",
"homepage": "https://github.com/ember-cli/broccoli-terser-sourcemap#readme",
"bugs": {
"url": "https://github.com/ember-cli/broccoli-terser-sourcemap/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/broccoli-terser-sourcemap.git"
},
"license": "MIT",
"author": "Edward Faulkner <[email protected]>",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/tmp"
],
"projects": [
"<rootDir>/jest-eslint.config.js",
"<rootDir>/jest-test.config.js"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/index.js"
]
},
"dependencies": {
"async-promise-queue": "^1.0.5",
"broccoli-plugin": "^4.0.7",
"convert-source-map": "^2.0.0",
"debug": "^4.3.1",
"lodash.defaultsdeep": "^4.6.1",
"matcher-collection": "^2.0.1",
"symlink-or-copy": "^1.3.1",
"terser": "^5.7.0",
"walk-sync": "^2.2.0",
"workerpool": "^6.1.5"
},
"devDependencies": {
"broccoli-test-helper": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.6.0",
"release-it": "^14.10.1",
"release-it-lerna-changelog": "^3.1.0"
},
"engines": {
"node": "^10.12.0 || 12.* || >= 14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"changelog": {
"repo": "ember-cli/broccoli-terser-sourcemap",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"commitMessage": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
}
}