-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
68 lines (68 loc) · 2.18 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
68
{
"name": "super-rentals-tutorial",
"version": "0.0.0",
"description": "Runnable super-rentals tutorial",
"main": "index.js",
"author": "Godfrey Chan",
"license": "MIT",
"private": true,
"devDependencies": {
"@actions/core": "^1.2.6",
"@types/glob": "^8.0.0",
"@types/image-size": "^0.8.0",
"@types/mdast": "^3.0.2",
"@types/mkdirp": "^1.0.2",
"@types/ncp": "^2.0.1",
"@types/node": "^18.11.18",
"@types/unist": "^2.0.3",
"@types/vfile": "^4.0.0",
"chalk": "^2.4.2",
"ember-cli": "*",
"ember-dictionary": "^0.2.3",
"image-size": "^1.0.2",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"node-glob": "^1.2.0",
"puppeteer": "~19.5.2",
"rehype-stringify": "^6.0.0",
"remark": "^11.0.1",
"remark-cli": "^7.0.0",
"remark-frontmatter": "^1.3.2",
"remark-lint": "^6.0.5",
"remark-lint-list-item-indent": "^1.0.4",
"remark-parse": "^7.0.1",
"remark-parse-yaml": "^0.0.3",
"remark-preset-lint-consistent": "^2.0.3",
"remark-preset-lint-recommended": "^3.0.3",
"remark-rehype": "^5.0.0",
"remark-retext": "^3.1.3",
"remark-stringify": "^7.0.2",
"retext-contractions": "^3.0.0",
"retext-english": "^3.0.3",
"retext-indefinite-article": "^1.1.7",
"retext-repeated-words": "^2.0.0",
"retext-spell": "^3.0.0",
"retext-syntax-urls": "^1.0.2",
"shx": "^0.3.2",
"ts-std": "^0.7.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4",
"unified": "^8.4.0"
},
"scripts": {
"clean": "shx rm -rf dist",
"lint": "yarn lint:ts && yarn lint:md",
"lint:ts": "tslint --project .",
"lint:md": "remark . --frail",
"lint:md:src": "yarn lint:md --ignore-pattern dist",
"lint:md:dist": "yarn lint:md --ignore-pattern src",
"precompile": "yarn lint:ts",
"compile": "tsc",
"generate": "node ./dist/bin/generate.js",
"prebuild": "yarn clean && yarn compile && yarn lint:md:src",
"build": "yarn generate",
"postbuild": "yarn lint:md:dist"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}