-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "markdown-ts",
"version": "0.0.1",
"description": "代码生成Markdown文本 - The code generates markdown text",
"main": "index.js",
"types": "types.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HyperSimon/markdown-js.git"
},
"author": "Simon Wang <hero12c@outlook.com> (https://github.com/HyperSimon)",
"license": "ISC",
"bugs": {
"url": "https://github.com/HyperSimon/markdown-js/issues"
},
"homepage": "https://github.com/HyperSimon/markdown-js#readme",
"dependencies": {
"@types/lodash": "^4.14.62",
"kit-ts": "0.0.5"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"jest-cli": "^19.0.2",
"lodash": "^4.17.4",
"ts-jest": "^19.0.10",
"typescript": "^2.2.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}