-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.36 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@cw/tsconfig",
"version": "1.0.1",
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib/",
"src/"
],
"author": "Kavan J. Shaban (Cycloware, LLC)",
"description": "Library to parse entire `tsconfig.json` hierarchy through the `extends` property in tsconfig files.",
"homepage": "https://github.com/Cycloware/cw-tsconfig",
"repository": {
"type": "git",
"url": "https://github.com/Cycloware/cw-tsconfig.git"
},
"contributors": [
{
"name": "Kavan Shaban",
"url": "https://github.com/kavanshaban"
},
{
"name": "Cycloware",
"url": "https://github.com/cycloware"
}
],
"keywords": [
"TypeScript",
"compiler",
"config",
"extends",
"inheritance",
"tsconfig"
],
"engines": {
"npm": ">=3"
},
"scripts": {
"test": "clscr && jest --watch",
"test:all": "clscr && jest --watchAll",
"test:changed": "clscr && jest --watch --onlyChanged",
"build": "npm run build:lib",
"prebuild:lib": "clscr && rimraf lib",
"build:lib": "tsc -p src/tsconfig.json",
"build:lib:watch": "tsc -p src/tsconfig.json --watch --pretty",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"strip-bom": "^3.0.0",
"strip-json-comments": "^2.0.1"
},
"devDependencies": {
"@types/jest": "22.1.2",
"@types/node": "^9.4.5",
"@types/strip-bom": "^3.0.0",
"@types/strip-json-comments": "0.0.30",
"jest": "22.2.2",
"jest-cli": "22.2.2",
"module-alias": "^2.0.3",
"screen-clear": "^1.0.13",
"semantic-release": "^12.4.1",
"ts-jest": "^22.0.3",
"ts-node": "^4.1.0",
"typescript": "^2.7.1"
},
"jest": {
"globals": {
"__DEV__": true,
"__TS_CONFIG__": "./tests/tsconfig.json"
},
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns": [
"/^((?!src).)/"
],
"moduleNameMapper": {
"@cw/tsconfig": "<rootDir>/lib"
},
"moduleDirectories": [
"node_modules",
"./"
]
},
"_moduleDirectories": [
"out",
"out/modules",
"./"
],
"_moduleAliases": {
"@": "out",
"@cw/tsconfig": "lib"
}
}