forked from survivejs/maintenance-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.8 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
{
"name": "survivejs-maintenance",
"private": true,
"version": "0.9.18",
"description": "SurviveJS - Maintenance",
"scripts": {
"publish:silent": "leanpub-cli publish-silent survivejs-maintenance",
"preview": "leanpub-cli preview survivejs-maintenance",
"job-status": "leanpub-cli job-status survivejs-maintenance",
"test": "npm run test:links && npm run textlint && npm run test:md && npm run remarklint && npm run prettier",
"test:links": "check-markdown-links manuscript",
"test:md": "markdown-doctest",
"proselint": "proselintjs 'manuscript/**/*.md'",
"remarklint": "remark --quiet 'manuscript/**/*md'",
"textlint": "textlint 'manuscript/**/*.md'",
"textlint:fix": "textlint --fix 'manuscript/**/*.md'",
"prettier": "prettier --write 'manuscript/**/*.md'"
},
"repository": {
"type": "git",
"url": "https://github.com/survivejs/maintenance-book.git"
},
"keywords": [
"javascript",
"maintenance"
],
"author": "",
"license": "CC BY-NC-ND",
"bugs": {
"url": "https://github.com/survivejs/maintenance-book/issues"
},
"homepage": "https://github.com/survivejs/maintenance-book",
"devDependencies": {
"check-markdown-links": "^0.1.1",
"husky": "^1.3.1",
"leanpub-cli": "^0.2.0",
"markdown-doctest": "^0.9.1",
"prettier": "^1.15.3",
"proselint": "^0.1.7",
"remark-cli": "^6.0.1",
"remark-lint": "^6.0.4",
"textlint": "^11.0.2",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-apostrophe": "^1.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-stop-words": "1.0.7",
"textlint-rule-terminology": "^1.1.30",
"textlint-rule-title-case": "^1.0.0",
"textlint-rule-write-good": "^1.6.2"
},
"husky": {
"hooks": {
"pre-push": "npm run test"
}
}
}