forked from survivejs/webpack-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "survivejs-webpack",
"private": true,
"version": "3.0.15",
"description": "SurviveJS - Webpack",
"scripts": {
"publish:silent": "leanpub-cli publish-silent survivejs-webpack",
"preview": "leanpub-cli preview survivejs-webpack",
"job-status": "leanpub-cli job-status survivejs-webpack",
"test": "npm run textlint && npm run remark",
"test:links": "check-markdown-links manuscript",
"proselint": "proselintjs \"manuscript/**/*.md\"",
"textlint": "textlint \"manuscript/*.md\" && textlint \"manuscript/**/*.md\"",
"keywords": "node ./utils/keywords",
"remark": "remark manuscript",
"push": "git push && npm run preview"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"remarkConfig": {
"plugins": [
"preset-survivejs"
]
},
"repository": {
"type": "git",
"url": "https://github.com/survivejs/webpack-book.git"
},
"keywords": [
"react",
"webpack"
],
"author": "",
"license": "CC BY-NC-ND",
"bugs": {
"url": "https://github.com/survivejs/webpack-book/issues"
},
"homepage": "https://github.com/survivejs/webpack-book",
"dependencies": {},
"devDependencies": {
"check-markdown-links": "^0.1.1",
"glob": "^7.1.1",
"husky": "^4.2.5",
"leanpub-cli": "^0.2.0",
"nlcst-to-string": "^2.0.0",
"prettier": "^2.0.5",
"proselint": "^0.1.7",
"remark-cli": "^6.0.1",
"remark-preset-survivejs": "^0.2.1",
"retext": "^5.0.0",
"retext-keywords": "^4.0.0",
"textlint": "^11.6.3",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-terminology": "^2.1.4",
"textlint-rule-write-good": "^1.6.2",
"to-vfile": "^2.1.1"
}
}