-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "devonthink-heti",
"version": "1.3.0",
"description": "赫蹏为DEVONthink的RSS阅读器制作的样式",
"main": "Heti.css",
"scripts": {
"start": "node-sass lib/ -o demo/ -w --output-style=expanded --importer node_modules/node-sass-package-importer/dist/cli.js",
"build": "node-sass lib/ -o ./ --output-style=expanded --importer node_modules/node-sass-package-importer/dist/cli.js",
"test": "npx stylelint --config package.json 'lib/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sivan/devonthink-heti.git"
},
"keywords": [
"typography",
"css",
"DEVONthink",
"sass",
"scss"
],
"author": "Sivan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sivan/devonthink-heti/issues"
},
"homepage": "https://github.com/sivan/devonthink-heti#readme",
"dependencies": {
"heti": "^0.8.2",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"node-sass": "^4.14.0",
"node-sass-package-importer": "^5.3.2",
"sass-module-importer": "^1.4.0",
"stylelint": "^13.3.3",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.17.1"
},
"stylelint": {
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss"
],
"rules": {
"no-descending-specificity": [
true,
{
"ignore": [
"selectors-within-list"
]
}
],
"selector-type-no-unknown": [
true,
{
"ignore": [
"custom-elements"
]
}
]
}
}
}