-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
104 lines (104 loc) · 2.9 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "postcss-easysprites",
"version": "1.1.0",
"description": "PostCSS plugin that generate sprites, like postcss-sprites, but proper way",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sprite",
"sprites"
],
"author": "Gleb Mikheev <[email protected]>",
"contributors": [
{
"name": "Patrick Cate",
"url": "https://github.com/patrickcate"
}
],
"license": "MIT",
"repository": "glebmachine/postcss-easysprites",
"bugs": {
"url": "https://github.com/glebmachine/postcss-easysprites/issues"
},
"homepage": "https://github.com/glebmachine/postcss-easysprites",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"files": [
"lib"
],
"dependencies": {
"ansi-colors": "^4.1.1",
"css-color-names": "^1.0.1",
"fancy-log": "^1.3.3",
"md5": "^2.2.1",
"mkdirp": "^1.0.0",
"postcss": "^7.0.32",
"spritesmith": "^3.4.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^3.1.2",
"conventional-changelog-cli": "^2.0.34",
"cz-customizable": "^6.2.1",
"del": "^5.1.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^29.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-watch": "^7.0.0",
"fixture-stdout": "^0.2.1",
"gulp": "^4.0.2",
"gulp-mocha": "^7.0.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"husky": "^3.1.0",
"jsdoc": "^3.6.4",
"mocha": "^7.0.0",
"mocha-performance": "^0.1.1",
"nyc": "^15.0.0",
"pixelmatch": "^5.2.1",
"pngjs": "^4.0.0",
"prettier": "^1.19.1",
"rewire": "^5.0.0",
"rimraf": "^3.0.0",
"sinon": "^8.0.0"
},
"scripts": {
"test": "gulp test",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"lint:watch": "esw --fix --watch --ext .js .",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 2 --tagPrefix=",
"mocha": "mocha",
"perf": "node --prof ./node_modules/mocha/bin/_mocha",
"performance": "node --allow-natives-syntax ./node_modules/mocha/bin/_mocha --reporter mocha-performance ./test/**/*.js",
"coverage": "nyc --reporter=text-summary --reporter=html --reporter=text --reporter=lcov mocha --recursive --timeout 5000",
"docs": "jsdoc -c jsdoc.conf.json"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}