-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
41 lines (41 loc) · 925 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": "gulp-civet",
"version": "0.0.1",
"description": "Compile Civet files with Gulp",
"main": "index.js",
"type": "commonjs",
"scripts": {
"prepare": "civet --js -c index.civet -o index.js",
"test": "mocha"
},
"homepage": "https://github.com/DanielXMoore/Civet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DanielXMoore/Civet.git"
},
"keywords": [
"gulpplugin"
],
"author": "Civet Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielXMoore/Civet/issues"
},
"peerDependencies": {
"@danielx/civet": ">=0.5.35"
},
"devDependencies": {
"@danielx/civet": "^0.7.4",
"mocha": "^10.7.3",
"vinyl": "^3.0.0"
},
"dependencies": {
"plugin-error": "^2.0.1",
"replace-ext": "^2.0.0",
"through2": "^4.0.2"
},
"mocha": {
"extension": ["civet"],
"require": "@danielx/civet/register"
}
}