forked from markuplint/markuplint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.2 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
69
70
71
72
73
74
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"dev": "lerna run --parallel dev",
"test": "jest --coverage",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:clear": "jest --clearCache",
"test:unit": "jest",
"test:heapdump": "node --expose-gc ./heaptest/index.js",
"lint": "prettier --write './{packages,website,playground}/**/*.{ts,tsx,json}'; eslint --fix './{packages,website,playground}/**/*.{ts,tsx}'",
"schema": "lerna run schema",
"gen": "cd packages/\\@markuplint/html-spec/; yarn gen; cd ../",
"all": "yarn lint; yarn clean; yarn gen; yarn build; yarn schema; yarn test:clear; yarn test;",
"cli": "./packages/markuplint/bin/markuplint",
"site:dev": "cd website; yarn site:dev",
"site:build": "cd website; yarn site:build",
"pg:dev": "cd playground; yarn pg:dev",
"pg:build": "cd playground; yarn pg:build",
"apidoc": "typedoc --ignoreCompilerErrors --exclude '**/*+(index|.spec|.e2e|.d).ts,node_modules/**/*' --mode file --out apidoc --media packages/markuplint/media --readme ./packages/markuplint/README.md ./packages/markuplint/",
"release": "lerna publish",
"prerelease": "yarn build; yarn test"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(\\.|/)(test|spec)\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"packages/markuplint/src/**/*.ts",
"packages/@markuplint/*/src/**/*.ts"
]
},
"workspaces": [
"packages/*",
"packages/@markuplint/*",
"website",
"playground"
],
"devDependencies": {
"@types/jest": "^26.0.5",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"coveralls": "^3.1.0",
"eslint": "^7.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^30.0.0",
"eslint-plugin-node": "^11.1.0",
"heapdump": "^0.3.15",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.6"
}
}