-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
84 lines (84 loc) · 2.31 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
{
"name": "broccoli-persistent-filter",
"version": "3.1.3",
"description": "broccoli filter but with a persistent cache",
"author": "Stefan Penner <stefan.penner@gmail.com>",
"main": "lib/index.js",
"files": [
"lib/",
"src/"
],
"scripts": {
"prepare": "yarn build",
"pretest": "yarn build",
"build": "tsc -b",
"watch": "tsc --watch .",
"clean": "tsc -b --clean .",
"test": "yarn test:js && yarn test:types",
"test:coverage": "istanbul cover --config=test/istanbul.yml _mocha",
"test:debug": "yarn prepare && yarn test:js:debug",
"test:js": "mocha --require source-map-support/register test/*-test.js",
"test:types": "dtslint type-tests",
"test:js:debug": "mocha --require source-map-support/register debug test/*-test.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stefanpenner/broccoli-persistent-filter.git"
},
"bugs": {
"url": "https://github.com/stefanpenner/broccoli-persistent-filter/issues"
},
"homepage": "https://github.com/stefanpenner/broccoli-persistent-filter#readme",
"keywords": [
"broccoli",
"broccoli-plugin",
"broccoli-helper",
"filter",
"cache"
],
"dependencies": {
"async-disk-cache": "^2.0.0",
"async-promise-queue": "^1.0.3",
"broccoli-plugin": "^4.0.3",
"fs-tree-diff": "^2.0.0",
"hash-for-dep": "^1.5.0",
"heimdalljs": "^0.2.1",
"heimdalljs-logger": "^0.1.7",
"promise-map-series": "^0.2.1",
"rimraf": "^3.0.0",
"symlink-or-copy": "^1.0.1",
"sync-disk-cache": "^2.0.0"
},
"devDependencies": {
"@types/async": "^3.2.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^10",
"@types/rimraf": "^3.0.0",
"broccoli-node-api": "^1.7.0",
"broccoli-test-helper": "^2.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-files": "^1.4.0",
"co": "^4.6.0",
"coveralls": "^3.0.9",
"dtslint": "^3.4.1",
"fs-merger": "^3.1.0",
"istanbul": "^0.4.2",
"minimatch": "^3.0.2",
"mocha": "^7.1.1",
"mocha-jshint": "^2.3.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.1.0",
"source-map-support": "^0.5.16",
"typescript": "^3.8.3"
},
"engines": {
"node": "10.* || >= 12.*"
},
"volta": {
"node": "12.22.12",
"yarn": "1.22.19"
}
}