-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.63 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
{
"name": "tsdoc-testify",
"version": "0.0.3",
"main": "./lib/app.js",
"types": "./lib/app.d.ts",
"bin": {
"tsdoc-testify": "./lib/cli.js"
},
"license": "Apache-2.0",
"repository": "akito0107/tsdoc-testify",
"author": {
"name": "Akito Ito",
"email": "[email protected]"
},
"scripts": {
"test": "jest",
"lint": "eslint ./src/**/*.ts",
"fmt": "eslint --fix ./src/**/*/ts",
"build": "yarn run clean && tsc",
"clean": "rimraf ./lib/*",
"examplesdoc": "typedoc --out examplesdoc examples"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/prettier": "^1.19.0",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.5.4",
"typedoc": "^0.15.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)",
"**/*.doctest.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"helper.ts",
"/lib/"
]
},
"dependencies": {
"@microsoft/tsdoc": "^0.12.16",
"catacli": "^0.1.3",
"glob": "^7.1.6",
"prettier": "^1.17.1",
"source-map-support": "^0.5.12",
"tsutils": "^3.17.1",
"typescript": "^3.7.1"
}
}