forked from craydent/Craydent-Node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·119 lines (119 loc) · 3.34 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "craydent",
"version": "0.10.3",
"description": "node library based on craydent-1.9.3",
"main": "index.js",
"scripts": {
"clean": "./local_scripts/clean.sh",
"buildDev": "./local_scripts/buildDev.sh",
"buildPrivate": "./local_scripts/buildPrivate.sh",
"build": "./local_scripts/build.sh",
"gitResolve": "./local_scripts/gitResolve.sh",
"pushPublic": "git push public;",
"push": "git push origin;",
"pushAll": "git push origin; git push public;",
"publishPublic": "./local_scripts/publish.sh",
"publishPrivate": "./local_scripts/publishPrivate.sh",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://cinada@bitbucket.org/craydent/node-library.git"
},
"keywords": [
"craydent",
"library",
"jquery",
"es6",
"sugar",
"utility",
"ajax",
"array",
"class",
"co",
"control flow",
"date",
"express",
"fs",
"function",
"http",
"json",
"koa",
"moment",
"mongo",
"mongodb",
"number",
"object",
"parser",
"REST",
"regexp",
"route",
"string",
"swagger",
"template",
"typeof",
"xml",
"xml to json"
],
"author": "Clark Inada",
"license": "MIT",
"homepage": "https://bitbucket.org/craydent/node-library#readme",
"dependencies": {
"craydent-array": "0.10.2",
"craydent-class": "0.10.2",
"craydent-cli": "0.10.2",
"craydent-control-flow": "0.10.2",
"craydent-date": "0.10.2",
"craydent-fs": "0.10.2",
"craydent-function": "0.10.2",
"craydent-http": "0.10.2",
"craydent-json-parser": "0.10.2",
"craydent-number": "0.10.2",
"craydent-object": "0.10.2",
"craydent-regexp": "0.10.2",
"craydent-string": "0.10.2",
"craydent-template": "0.10.2",
"craydent-typeof": "0.10.2",
"craydent-utility": "0.10.2",
"craydent-xml-to-json": "0.10.2"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^11.9.4",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coveragePathIgnorePatterns": [
"<rootDir>/transformedMajor",
"<rootDir>/transformedMinor",
"<rootDir>/compiled",
"<rootDir>/tests"
],
"testPathIgnorePatterns": [
".history",
"__prototypes.ts",
"index.template",
"global.base.ts",
"global.vars.ts"
],
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"js",
"json",
"node",
"ts"
],
"moduleNameMapper": {
"^protected(.*)$": "<rootDir>/modules/protected$1",
"^private(.*)$": "<rootDir>/modules/private$1",
"^methods(.*)$": "<rootDir>/modules/methods$1",
"^models(.*)$": "<rootDir>/modules/models$1"
},
"coverageDirectory": "<rootDir>/reports/code_coverage"
}
}