-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "chaestli",
"version": "3.1.0",
"description": "A scss grid framework made in Switzerland and brought to you by dreipol",
"main": "_index.scss",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "npm run lint && npx sass test.scss",
"lint": "stylelint _index.scss lib/**/*.scss",
"doc": "mv docs/demo demo && npx sassdoc lib --dest docs && mv demo docs/demo",
"demo": "npx sass --style=compressed docs/demo/scss/index.scss:docs/demo/index.css",
"watch-demo": "npx sass --watch --style=compressed docs/demo/scss/index.scss:docs/demo/index.css",
"prepublishOnly": "npm run doc && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreipol/chaestli.git"
},
"files": [
"lib",
"_index.scss"
],
"keywords": [
"grid",
"scss",
"framework",
"css",
"responsive"
],
"author": {
"name": "dreipol GmbH",
"email": "[email protected]",
"url": "http://dreipol.ch"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dreipol/chaestli/issues"
},
"homepage": "https://github.com/dreipol/chaestli#readme",
"devDependencies": {
"@dreipol/scss-mq": "^2.0.0",
"@dreipol/stylelint-config": "^7.0.0",
"@dreipol/stylelint-config-bem-pattern": "^3.0.0",
"@dreipol/stylelint-config-order": "^4.0.0",
"@dreipol/stylelint-config-scss": "^3.0.0",
"node-sass": "4.14.1",
"sassdoc": "^2.7.3",
"stylelint": "^13.7.2",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"stylelint-selector-bem-pattern": "^2.1.0"
}
}