-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
76 lines (76 loc) · 1.87 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
{
"name": "broccoli-concat",
"version": "4.2.5",
"description": "Fast, good-enough concatenation with source maps.",
"keywords": [
"broccoli-plugin"
],
"repository": "https://github.com/ember-cli/broccoli-concat",
"license": "MIT",
"author": "Edward Faulkner <[email protected]>",
"main": "index.js",
"files": [
"concat.js",
"concat-without-source-maps.js",
"index.js",
"lib/"
],
"scripts": {
"test": "mocha --recursive",
"test:lint": "mocha lint.js",
"test:debug": "mocha --no-timeouts --inspect",
"bench": "node bench/info && bench bench/suites -i 10"
},
"dependencies": {
"broccoli-debug": "^0.6.5",
"broccoli-kitchen-sink-helpers": "^0.3.1",
"broccoli-plugin": "^4.0.2",
"ensure-posix-path": "^1.0.2",
"fast-sourcemap-concat": "^2.1.0",
"find-index": "^1.1.0",
"fs-extra": "^8.1.0",
"fs-tree-diff": "^2.0.1",
"lodash.merge": "^4.6.2",
"lodash.omit": "^4.1.0",
"lodash.uniq": "^4.2.0"
},
"devDependencies": {
"bench-cli": "^0.1.0",
"broccoli": "^3.2.0",
"broccoli-merge-trees": "^3.0.2",
"broccoli-source": "^3.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-files": "^1.2.0",
"fixturify": "^1.2.0",
"fs-merger": "^3.0.2",
"mocha": "^6.2.1",
"mocha-eslint": "^4.1.0",
"quick-temp": "^0.1.8",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"sourcemap-validator": "^2.1.0",
"walk-sync": "^2.0.2"
},
"engines": {
"node": "10.* || >= 12.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}