forked from apify/apify-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.46 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
{
"name": "apify-docs",
"version": "0.0.1",
"description": "This is a home of Apify documentation.",
"main": "index.js",
"scripts": {
"build": "npm run lint:md && npm run lint:code && node ./src/build.js",
"test": "npm run test",
"lint": "npm run lint:md && npm run lint:code",
"lint:fix": "npm run lint:md:fix && npm run lint:code:fix",
"lint:md": "./node_modules/.bin/markdownlint '**/*.md'",
"lint:md:fix": "./node_modules/.bin/markdownlint '**/*.md' --fix",
"lint:code": "./node_modules/.bin/eslint . && eslint --ext js,md",
"lint:code:fix": "./node_modules/.bin/eslint . --ext .js,.jsx --fix && eslint --ext js,md --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/apifytech/apify-docs.git"
},
"keywords": [
"documentation",
"apify"
],
"author": "Marek Trunkát",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apifytech/apify-docs/issues"
},
"homepage": "https://github.com/apifytech/apify-docs#readme",
"dependencies": {
"@apify/eslint-config": "0.0.2",
"apify-shared": "^0.1.55",
"fs-extra": "^8.1.0",
"markdown-yaml-metadata-parser": "^2.0.1",
"underscore": "^1.9.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"eslint": "^7.12.1",
"eslint-plugin-markdown": "^2.0.0-rc.0",
"markdownlint": "^0.21.0",
"markdownlint-cli": "^0.24.0"
}
}