-
Notifications
You must be signed in to change notification settings - Fork 529
/
package.json
103 lines (103 loc) · 2.47 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
{
"name": "sass-lint",
"version": "1.13.0",
"description": "All Node Sass linter!",
"main": "index.js",
"scripts": {
"preversion": "npm test",
"pretest": "eslint .",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --opts mocha.opts --timeout 10000",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"semantic-release": "semantic-release"
},
"bin": {
"sass-lint": "./bin/sass-lint.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sasstools/sass-lint.git"
},
"keywords": [
"Sass",
"SCSS",
"lint"
],
"author": "Sam Richard",
"license": "MIT",
"bugs": {
"url": "https://github.com/sasstools/sass-lint/issues"
},
"homepage": "https://github.com/sasstools/sass-lint",
"dependencies": {
"autoprefixer": "^7.1.3",
"chalk": "^2.1.0",
"commander": "^2.8.1",
"fs-extra": "^5.0.0",
"glob": "^7.0.0",
"globule": "^1.0.0",
"gonzales-pe": "4.2.4",
"gray-matter": "^3.1.1",
"js-yaml": "^3.13.1",
"known-css-properties": "^0.5.0",
"lodash.capitalize": "^4.1.0",
"lodash.kebabcase": "^4.0.0",
"lodash.map": "^4.6.0",
"lodash.template": "^4.4.0",
"merge": "^1.2.1",
"path-is-absolute": "^1.0.0",
"text-table": "^0.2.0",
"util": "^0.10.3"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@semantic-release/git": "^7.0.8",
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.2",
"coveralls": "^3.0.0",
"deep-equal": "^1.0.1",
"eslint": "^4.5.0",
"husky": "^2.1.0",
"istanbul": "^0.4.5",
"lint-staged": "^8.1.5",
"mocha": "^5.2.0",
"proxyquire": "^1.8.0",
"semantic-release": "^15.13.12",
"sinon": "^4.1.2",
"strip-ansi": "^4.0.0"
},
"engines": {
"node": ">=6"
},
"lint-staged": {
"**/*.js": [
"npm run pretest",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run pretest",
"pre-push": "npm run preversion",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"release": {
"branch": "develop",
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json"
]
}
]
}
}