This repository was archived by the owner on Nov 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "@simplrjs/markdown",
"version": "1.1.0",
"description": "Markdown generator",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"coveralls": "coveralls < coverage/lcov.info",
"test": "jest",
"test-ci": "jest --maxWorkers=4",
"tslint": "tslint --project . --config ./tslint.json",
"test-watch": "jest --watchAll",
"build": "tsc -p .",
"prepublishOnly": "npm run build && rimraf dist/debug.*"
},
"author": "SimplrJS <simplr@quatrodev.com> (https://github.com/simplrjs)",
"repository": {
"type": "git",
"url": "git+https://github.com/SimplrJS/markdown.git"
},
"contributors": [
"Martynas Žilinskas <martynas@quatrodev.com> (https://github.com/MartynasZilinskas)"
],
"dependencies": {
"@types/string": "0.0.29",
"string": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^21.1.9",
"coveralls": "^3.0.0",
"jest": "^22.0.3",
"rimraf": "^2.6.2",
"simplr-tslint": "0.0.1",
"ts-jest": "^22.0.0",
"ts-node": "^4.0.2",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"files": [
"dist",
"@types",
"**/*.md",
"*.js",
"!*.config.js"
],
"jest": {
"collectCoverage": true,
"mapCoverage": true,
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx|js)$",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}