-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
41 lines (41 loc) · 997 Bytes
/
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
{
"name": "broccoli-caching-writer",
"version": "3.0.3",
"description": "Broccoli plugin that allows simple caching (while still allowing N:N) based on the input tree hash.",
"main": "index.js",
"author": "Robert Jackson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ember-cli/broccoli-caching-writer.git"
},
"files": [
"can-use-input-files.js",
"index.js",
"key.js"
],
"scripts": {
"test": "mocha tests/",
"test:debug": "mocha --no-timeouts debug tests/"
},
"keywords": [
"broccoli-plugin",
"javascript"
],
"dependencies": {
"broccoli-kitchen-sink-helpers": "^0.3.1",
"broccoli-plugin": "^1.2.1",
"debug": "^3.0.0",
"rimraf": "^2.2.8",
"rsvp": "^3.0.17",
"walk-sync": "^0.3.0"
},
"devDependencies": {
"broccoli": "^0.16.9",
"chai": "^3.2.0",
"chai-as-promised": "^6.0.0",
"chai-files": "^1.2.0",
"mocha": "^3.0.2",
"mocha-jshint": "~2.3.1"
}
}