-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "kartiniteknologi.id",
"version": "1.0.0",
"description": "Kartini Teknologi adalah podcast yang menampilkan perempuan Indonesia di dunia teknologi.",
"scripts": {
"format": "npm run format:index && npm run format:content",
"format:index": "prettier --write \"*.{js,json,md}\"",
"format:content": "prettier --write \"content/**/*.{md,html}\"",
"prepare": "npm run format"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:kelimuttu/kartiniteknologi.git"
},
"bugs": {
"url": "https://github.com/kelimuttu/kartiniteknologi/-/issues"
},
"homepage": "https://github.com/kelimuttu/kartiniteknologi#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"husky": "^4.2.5",
"netlify-plugin-image-optim": "^0.3.0",
"netlify-plugin-submit-sitemap": "^0.1.4",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run prepare"
}
},
"prettier": {
"semi": true,
"singleQuote": false,
"trailingComma": "all"
}
}