forked from sass/sass-spec
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.28 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
{
"name": "sass-spec",
"version": "3.5.4",
"description": "Test suite for testing compatibility with the Sass Stylesheet language.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sass/sass-spec.git"
},
"keywords": [
"sass"
],
"files": [
"spec",
"index.js"
],
"author": "Michael Mifsud <xzyfer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sass/sass-spec/issues"
},
"homepage": "https://github.com/sass/sass-spec#readme",
"dependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@jest/types": "^27.2.5",
"@types/data-urls": "^2.0.1",
"@types/diff": "^5.0.1",
"@types/fs-extra": "^9.0.13",
"@types/intercept-stdout": "^0.1.0",
"@types/jasmine": "^4.3.1",
"@types/jasmine-expect": "^3.8.1",
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/karma": "^6.3.3",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.7",
"@types/node-hrx": "^0.1.0",
"@types/tmp": "^0.2.1",
"@types/yargs": "^17.0.4",
"data-urls": "^3.0.1",
"del": "^6.0.0",
"diff": "^5.0.0",
"esbuild": "^0.16.17",
"file-lines-count": "^1.0.1",
"fs-extra": "^10.0.0",
"gts": "^3.1.0",
"immutable": "^4.0.0",
"intercept-stdout": "^0.1.2",
"jasmine": "^4.6.0",
"jasmine-expect": "^5.0.0",
"jasmine-spec-reporter": "^7.0.0",
"jest": "^27.3.1",
"jest-environment-node-single-context": "^27.2.0",
"jest-extended": "^1.1.0",
"js-yaml": "^4.1.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-esbuild": "^2.2.5",
"karma-jasmine": "^5.1.0",
"karma-jasmine-matchers": "^5.0.0",
"karma-mocha-reporter": "^2.2.5",
"lodash": "^4.17.21",
"node-hrx": "^0.1.0",
"prettier": "^2.1.2",
"sass-migrator": "^2.0.3",
"source-map-js": "^0.6.2",
"tmp": "^0.2.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.1",
"typescript": "^4.0.5",
"yargs": "^17.2.1"
},
"scripts": {
"sass-spec": "ts-node sass-spec.ts",
"js-api-spec": "ts-node js-api-spec.ts",
"test": "jest",
"lint-spec": "ts-node lint-spec.ts",
"lint": "gts lint",
"migrate": "ts-node migrate.ts",
"fix": "gts fix"
},
"engines": {
"node": ">=v14.14.0"
}
}