forked from oddbird/true
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.81 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
{
"name": "sass-true",
"title": "True",
"version": "5.0.0",
"description": "Unit testing for Sass.",
"homepage": "http://oddbird.net/true",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/oddbird/true.git"
},
"keywords": [
"unit-test",
"test",
"sass",
"libsass",
"TDD",
"eyeglass-module"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"chalk": "^2.4.2",
"css": "^2.2.1",
"lodash.find": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.last": "^3.0.0"
},
"devDependencies": {
"beeper": "^2.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.3",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-sass-lint": "^1.3.4",
"jest": "^24.8.0",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"nyc": "^14.1.1",
"sassdoc": "^2.7.0",
"sassdoc-theme-herman": "^3.0.2"
},
"eyeglass": {
"needs": "^1.0",
"name": "true",
"sassDir": "./sass/",
"exports": false
},
"scripts": {
"test": "yarn test:mocha; yarn test:jest",
"test:mocha": "nyc --reporter=html --reporter=text mocha",
"test:jest": "jest --testRegex test_sass",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"debug": "mocha debug",
"sassdoc": "sassdoc sass/",
"compile": "node-sass test/scss/test.scss test/css/test.css --include-path ./sass/",
"commit": "yarn test; yarn compile; gulp sasslint; yarn sassdoc"
},
"author": "Miriam Suzanne <miriam@oddbird.net>",
"contributors": [
"Scott Davis <me@sdavis.info>",
"Chris Eppstein <chris@eppsteins.net>",
"Carl Meyer <carl@oddbird.net>",
"David Glick <david@oddbird.net>",
"Jonny Gerig Meyer <jonny@oddbird.net>"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/oddbird/true/issues"
}
}