forked from Techtonica/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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
66
67
{
"name": "curriculum",
"version": "1.0.0",
"description": "Techtonica partners with tech companies to provide software engineering training with need-based, sliding-scale, subsidized tuition and living stipend scholarships for tech training with supplied laptops, job placement and/or job search support to women and non-binary adults seeking economic empowerment. For more information, please see our website: [Techtonica.org](http://techtonica.org)",
"author": "",
"license": "ISC",
"homepage": "https://github.com/Techtonica/curriculum#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Techtonica/curriculum.git"
},
"bugs": {
"url": "https://github.com/Techtonica/curriculum/issues"
},
"scripts": {
"precommit": "lint-staged",
"postcommit": "git update-index --again",
"validate-links": "remark .",
"prettier": "prettier --write ."
},
"devDependencies": {
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"remark-cli": "^7.0.1",
"remark-lint": "^6.0.5",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-validate-links": "^9.0.1"
},
"remarkConfig": {
"plugins": [
[
"remark-lint-no-dead-urls",
{
"skipLocalhost": true,
"skipUrlPatterns": [
"^(https?://)(codepen.io)",
"^(https?://)(github.com)"
]
}
]
]
},
"dependencies": {
"git-format-staged": "^2.1.0",
"mrm": "^2.1.1",
"precise-commits": "^1.0.2",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.md": [
"prettier --write",
"git add"
]
},
"pre-commit": [
"precommit",
"postcommit"
]
}