-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
{
"name": "@nirazul/scss-mq",
"version": "1.2.4",
"description": "Media query helper library for sass.",
"main": "_index.scss",
"directories": {
"lib": "lib"
},
"files": [
"_index.scss",
"lib",
"vendor"
],
"scripts": {
"prepublishOnly": "npm run test",
"test": "npm run build && npm run test:lint && npm run test:unit",
"test:lint": "npx stylelint --max-warnings 0 **/*.scss",
"test:unit": "npm run test:unit:run && npm run test:unit:check",
"test:unit:run": "npx sass --no-source-map test/test.scss test/test.css",
"test:unit:check": "npx mocha **/*.spec.mjs -r chai/register-expect.js",
"clean": "rm -rf vendor && mkdir vendor",
"move": "rsync -rm `pwd`/node_modules/* --include='*.scss' --include='*/' --exclude='*' vendor",
"build": "npm run clean && npm run move"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nirazul/scss-mq.git"
},
"keywords": [
"helpers",
"media",
"media-queries",
"mq",
"sass",
"scss"
],
"author": {
"name": "Rouven Bühlmann",
"email": "npm@adorable-squid.ch",
"url": "https://adorable-squid.ch"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"chai": "^5.0.3",
"css": "^3.0.0",
"lodash.chunk": "^4.2.0",
"mocha": "^10.0.0",
"sass": "^1.54.2",
"sass-to-js": "^2.0.0",
"stylelint": "^16.2.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.1.0"
},
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/nirazul/scss-mq/issues"
},
"homepage": "https://github.com/nirazul/scss-mq#readme",
"dependencies": {
"@nirazul/scss-utils": "^2.0.0"
}
}