-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.6 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
{
"name": "tuscany",
"version": "0.2.0",
"description": "A command-line utility that accepts a JSON manifest of routes and generates a folder structure of URL helpers",
"repository": "mycase/tuscany",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "npm run build && ./scripts/test.sh"
},
"main": "./dist/url_helper_utils.js",
"types": "./dist/url_helper_utils.d.ts",
"bin": {
"tuscany": "./bin/tuscany"
},
"author": "Robert Maloney ([email protected])",
"devDependencies": {
"@types/jest": "~27.4.1",
"@types/node": "~17.0.23",
"@types/qs": "^6.5.1",
"@types/yargs": "^12.0.2",
"jest": "~27.4.1",
"ts-jest": "^27.1.4",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-react": "^3.6.0"
},
"dependencies": {
"@types/rimraf": "^2.0.2",
"qs": "^6.6.0",
"rimraf": "^2.6.3",
"typescript": "~4.0.8",
"yargs": "^12.0.5"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.test.json"
}
},
"roots": [
"<rootDir>/test/jest"
],
"testRegex": ".*\\.test\\.(js|ts)$",
"testPathIgnorePatterns": [
"<rootDir>/test/jest/helpers"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"moduleNameMapper": {
"^tuscany$": "<rootDir>/dist/url_helper_utils"
}
}
}