-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 2.98 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
105
106
107
108
109
110
111
112
113
114
{
"name": "stylus-true",
"version": "1.0.2",
"description": "Framework to unit test your Stylus files.",
"main": "styl/true.styl",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"chalk": "^4.0.0",
"css": "^2.2.4",
"glob": "^7.1.4",
"jest": "^24.9.0",
"lodash.find": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.last": "^3.0.0",
"mocha": "^7.0.1",
"niepsuj-kss-template": "^1.1.6",
"nyc": "^15.0.0",
"stylus": "^0.54.7"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"cz-conventional-changelog": "^3.0.2",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"husky": "^4.0.2",
"kss": "^3.0.0-beta.25",
"prettier": "^2.0.0",
"pretty-quick": "^2.0.0",
"requirejs": "^2.3.6",
"semantic-release": "^16.0.0",
"standard-version": "^8.0.0",
"stylint": "^2.0.0"
},
"scripts": {
"test": "npm run test:mocha && npm run test:jest",
"nyc": "nyc --reporter=html --reporter=text mocha",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:mocha": "mocha test/stylus.spec.js",
"test:jest": "jest test/stylus.spec.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"debug": "mocha debug",
"kss": "npx kss --config kss-config.json",
"compile": "node-sass test/scss/test.scss test/css/test.css --include-path ./sass/",
"commit": "npm run test && npm run kss && git add . && git cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/ghaschel/stylus-true.git"
},
"keywords": [
"stylus",
"unit",
"test",
"unit-test",
"unit",
"test",
"css",
"jest",
"mocha",
"framework"
],
"author": "Guilherme Haschel",
"license": "ISC",
"bugs": {
"url": "https://github.com/ghaschel/stylus-true/issues"
},
"homepage": "https://github.com/ghaschel/stylus-true#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}"
}
]
}
}