-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
82 lines (82 loc) · 2 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
{
"name": "broccoli-plugin",
"version": "4.0.7",
"description": "Base class for all Broccoli plugins",
"keywords": [
"broccoli-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/broccolijs/broccoli-plugin"
},
"license": "MIT",
"author": "Jo Liss <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"lint": "eslint .",
"prepare": "yarn build",
"pretest": "multidep test/multidep.json",
"test": "yarn build && mocha",
"watch": "tsc --watch"
},
"dependencies": {
"broccoli-node-api": "^1.7.0",
"broccoli-output-wrapper": "^3.2.5",
"fs-merger": "^3.2.1",
"promise-map-series": "^0.3.0",
"quick-temp": "^0.1.8",
"rimraf": "^3.0.2",
"symlink-or-copy": "^1.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.33",
"@types/rimraf": "^3.0.0",
"@types/symlink-or-copy": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"broccoli-fixturify": "^0.3.0",
"chai": "^4.3.3",
"chai-as-promised": "^7.1.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"fixturify": "^2.1.0",
"mocha": "^8.3.1",
"multidep": "^2.0.2",
"prettier": "^2.2.1",
"release-it": "^14.4.1",
"release-it-lerna-changelog": "^3.1.0",
"typescript": "^4.2.3"
},
"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"
}
}
}