-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
127 lines (127 loc) · 3.38 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
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "sass-true",
"title": "True",
"version": "8.1.0",
"description": "Unit testing for Sass.",
"keywords": [
"unit-test",
"test",
"sass",
"libsass",
"TDD",
"eyeglass-module"
],
"homepage": "https://www.oddbird.net/true/",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/oddbird/true.git"
},
"bugs": {
"url": "https://github.com/oddbird/true/issues"
},
"author": "Miriam Suzanne <[email protected]>",
"contributors": [
"Scott Davis <[email protected]>",
"Chris Eppstein <[email protected]>",
"Carl Meyer <[email protected]>",
"David Glick <[email protected]>",
"Jonny Gerig Meyer <[email protected]>",
"Ed Rivas <[email protected]>"
],
"files": [
"lib/**/*",
"sass/**/*",
"_index.scss",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test:src": "jest",
"test:lib": "USE_BUILT=true mocha",
"test": "run-s build:js test:src test:lib",
"prettier:js": "prettier --write '**/*.js'",
"prettier:other": "prettier --write '**/*.{json,md,yml}'",
"eslint": "yarn eslint:ci --fix",
"eslint:ci": "eslint src test",
"lint": "run-p lint:js lint:sass prettier:other",
"lint:js": "run-s prettier:js eslint",
"lint:sass": "yarn lint:sass:ci --fix",
"lint:sass:ci": "stylelint '**/*.scss'",
"lint:ci": "run-p eslint:ci lint:sass:ci",
"docs": "sassdoc sass/",
"build:sass": "sass test/scss/test.scss test/css/test.css --load-path ./sass/",
"build:js": "tsc",
"build": "run-p build:js build:sass",
"commit": "run-s lint test build:sass",
"release": "run-s commit docs",
"prepack": "yarn run release"
},
"dependencies": {
"@adobe/css-tools": "^4.4.1",
"jest-diff": "^29.7.0",
"lodash": "^4.17.21"
},
"peerDependencies": {
"sass": ">=1.45.0",
"sass-embedded": ">=1.45.0"
},
"peerDependenciesMeta": {
"sass": {
"optional": true
},
"sass-embedded": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.16.0",
"@types/lodash": "^4.17.13",
"babel-jest": "^29.7.0",
"chai": "^4.5.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.13.0",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.4.0",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"sass": "^1.81.0",
"sass-embedded": "^1.81.0",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^6.0.2",
"stylelint": "^16.11.0",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"types": "./lib/index.d.ts",
"sass": "./_index.scss",
"default": "./lib/index.js"
},
"eyeglass": {
"needs": "*",
"name": "true",
"sassDir": "./sass/",
"exports": false
},
"packageManager": "[email protected]"
}