-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "postcss-iconfont",
"version": "1.0.0",
"description": "Create SVG/TTF/EOT/WOFF/WOFF2 fonts from several SVG icons with PostCSS",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/index.js",
"travis:test": "npm run cover",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha test/index.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"iconfont",
"webfont",
"postcss",
"postcss-plugin",
"tools"
],
"author": "kidney <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kidney/postcss-iconfont.git"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"gulp": "^3.9.1",
"gulp-iconfont": "^8.0.1",
"merge": "^1.2.0",
"postcss": "^5.2.14"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}