forked from ember-cli/broccoli-terser-sourcemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "broccoli-uglify-sourcemap",
"version": "2.2.0",
"description": "Broccoli filter to uglify files while preserving their sourcemaps.",
"homepage": "https://github.com/ember-cli/broccoli-uglify-sourcemap#readme",
"bugs": {
"url": "https://github.com/ember-cli/broccoli-uglify-sourcemap/issues"
},
"license": "MIT",
"author": "Edward Faulkner <[email protected]>",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/broccoli-uglify-sourcemap.git"
},
"scripts": {
"changelog": "lerna-changelog",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll"
},
"dependencies": {
"async-promise-queue": "^1.0.4",
"broccoli-plugin": "^1.2.1",
"debug": "^3.1.0",
"lodash.defaultsdeep": "^4.6.0",
"matcher-collection": "^1.0.5",
"mkdirp": "^0.5.0",
"source-map-url": "^0.4.0",
"symlink-or-copy": "^1.0.1",
"terser": "^3.10.8",
"walk-sync": "^0.3.2",
"workerpool": "^2.3.0"
},
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"broccoli-test-helper": "^1.2.0",
"eslint-plugin-node": "^6.0.1",
"jest": "^21.2.1",
"jest-runner-eslint": "^0.6.0",
"lerna-changelog": "^0.7.0"
},
"changelog": {
"repo": "ember-cli/broccoli-uglify-sourcemap",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/tmp"
],
"projects": [
"<rootDir>/jest-eslint.config.js",
"<rootDir>/jest-test.config.js"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/index.js"
]
}
}