-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
89 lines (89 loc) · 2.32 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
{
"name": "broccoli-babel-transpiler",
"version": "8.0.0",
"description": "A Broccoli plugin which transpile ES6 to readable ES5 by using babel.",
"keywords": [
"broccoli-plugin",
"transpiler",
"es6",
"ecmascript",
"ecmascript6",
"harmony",
"javascript",
"js"
],
"homepage": "https://github.com/babel/broccoli-babel-transpiler",
"bugs": {
"url": "https://github.com/babel/broccoli-babel-transpiler/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/babel/broccoli-babel-transpiler.git"
},
"license": "MIT",
"author": "nightire <[email protected]> (http://very-geek.com/)",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"changelog": "lerna-changelog",
"test": "mocha tests/test.js",
"test:debug": "mocha debug tests/test.js",
"test:slow": "mocha tests/test-slow.js",
"test:slow:debug": "mocha debug tests/test-slow.js",
"test:all": "mocha tests/test.js tests/test-slow.js"
},
"dependencies": {
"broccoli-persistent-filter": "^3.0.0",
"clone": "^2.1.2",
"hash-for-dep": "^1.4.7",
"heimdalljs": "^0.2.1",
"heimdalljs-logger": "^0.1.9",
"json-stable-stringify": "^1.0.1",
"rsvp": "^4.8.4",
"workerpool": "^6.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-block-scoping": "^7.16.7",
"@babel/plugin-transform-classes": "^7.16.7",
"@babel/plugin-transform-modules-amd": "^7.16.7",
"@babel/plugin-transform-strict-mode": "^7.16.7",
"@release-it-plugins/lerna-changelog": "^6.0.0",
"amd-name-resolver": "1.3.1",
"babel-plugin-module-resolver": "^4.1.0",
"broccoli-test-helpers": "0.0.9",
"chai": "^4.2.0",
"fixturify-project": "^1.9.0",
"mkdirp": "^0.5.1",
"mocha": "^6.0.1",
"ps-node": "^0.1.6",
"release-it": "^16.1.5"
},
"peerDependencies": {
"@babel/core": "^7.17.9"
},
"engines": {
"node": "16.* || >= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}