This repository was archived by the owner on Sep 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.84 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "dicy",
"version": "0.15.2",
"description": "A builder for LaTeX, knitr, literate Agda, literate Haskell and Pweave that automatically builds dependencies.",
"keywords": [
"latex",
"knitr",
"sage",
"biblatex"
],
"bugs": "https://github.com/yitzchak/dicy/issues",
"repository": {
"type": "git",
"url": "https://github.com/yitzchak/dicy.git"
},
"author": "Tarn Burton <twburton@gmail.com>",
"contributors": [],
"homepage": "https://yitzchak.github.io/dicy/",
"engines": {
"node": ">=6.9.0"
},
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"create-fixtures": "scripts/create-fixtures",
"dicy": "node packages/cli/lib/main.js",
"fix": "npm run fix-md && npm run fix-ts",
"fix-ts": "echo Fixing TypeScript... | chalk yellowBright bold && tslint --fix --format stylish --project tsconfig.json",
"fix-md": "echo Fixing MarkDown... | chalk yellowBright bold && remark . -o",
"format-yaml": "ts-node scripts/format-yaml.ts",
"lerna-publish": "lerna publish",
"lerna-updated": "lerna updated",
"lint": "npm run lint-md && npm run lint-ts",
"lint-ts": "echo Linting TypeScript... | chalk yellowBright bold && tslint --format stylish --project tsconfig.json",
"lint-md": "echo Linting MarkDown... | chalk yellowBright bold && remark .",
"specs": "echo Running specs... | chalk yellowBright bold && lerna run test --stream --concurrency 1",
"test": "npm run lint && npm run specs",
"update-dependencies": "lerna exec -- ts-node ../../scripts/update-dependencies.ts",
"update-types": "ts-node scripts/update-types && npm run fix-ts"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/jasmine": "^3.3.5",
"@types/js-yaml": "^3.11.4",
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.18",
"chalk-cli": "^4.1.0",
"fs-extra": "^7.0.1",
"jasmine": "^3.3.1",
"jasmine-expect": "^4.0.0",
"jasmine-ts": "^0.3.0",
"js-yaml": "^3.12.0",
"lerna": "^3.8.0",
"lodash": "^4.17.11",
"remark-cli": "^6.0.1",
"remark-preset-lint-consistent": "^2.0.2",
"remark-preset-lint-markdown-style-guide": "^2.1.2",
"remark-preset-lint-recommended": "^3.0.2",
"rimraf": "^2.6.2",
"tosource": "^1.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.2"
},
"remarkConfig": {
"plugins": [
"preset-lint-consistent",
"preset-lint-markdown-style-guide",
"preset-lint-recommended",
[
"lint-list-item-spacing",
false
],
[
"lint-no-duplicate-headings",
false
],
[
"lint-no-file-name-irregular-characters",
false
],
[
"lint-ordered-list-marker-value",
"ordered"
]
]
}
}