-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (40 loc) · 732 Bytes
/
package.json
File metadata and controls
41 lines (40 loc) · 732 Bytes
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
{
"name": "remarkdown.css",
"version": "3.1.0",
"license": "MIT",
"author": "Florens Verschelde",
"repository": "https://github.com/fvsch/remarkdown",
"keywords": [
"css",
"markdown"
],
"scripts": {
"build": "node src/build.js",
"start": "serve docs"
},
"devDependencies": {
"prettier": "^2.1.2",
"sass": "^1.26.11",
"serve": "^11.3.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"overrides": [
{
"files": "*.scss",
"options": {
"singleQuote": false
}
},
{
"files": "*.css",
"options": {
"singleQuote": false
}
}
]
}
}