-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "gulp-sword",
"version": "0.3.0",
"description": "Compile SwordCSS to CSS",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha --reporter=spec test/**",
"format": "prettier --no-config --write . && eslint --fix .",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swordcss/gulp-sword.git"
},
"keywords": [
"css",
"gulp"
],
"author": "shadowtime2000",
"license": "MIT",
"bugs": {
"url": "https://github.com/swordcss/gulp-sword/issues"
},
"homepage": "https://github.com/swordcss/gulp-sword#readme",
"dependencies": {
"plugin-error": "^1.0.1",
"replace-ext": "^2.0.0",
"through2": "^4.0.2"
},
"peerDependencies": {
"swordcss": ">=0.5.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-config-swordcss": "^0.3.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"swordcss": "^0.5.0",
"vinyl": "^2.2.1"
}
}