-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.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
{
"name": "ecma-error-normalizer",
"version": "1.0.5",
"description": "A tool to solve the problem of multiple ecmascript error possibilities. It will normalize in single error structure.",
"repository": {
"type": "git",
"url": "git+https://github.com/lordazzi/ecma-error-normalizer.git"
},
"bugs": {
"url": "https://github.com/lordazzi/ecma-error-normalizer/issues"
},
"homepage": "https://github.com/lordazzi/ecma-error-normalizer#readme",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "npm run build:win",
"build:win": "tsc --project . && copy LICENSE dist/LICENSE && copy README.md dist && copy MORE-COMMON-HTTP-PROBLEMS.md dist && copy package.json dist && copy package-lock.json dist",
"build:lnx": "tsc --project . && cp LICENSE dist/LICENSE && cp README.md dist && cp MORE-COMMON-HTTP-PROBLEMS.md dist && cp package.json dist && cp package-lock.json dist"
},
"keywords": [
"typescript",
"javascript",
"ts",
"js",
"bug",
"normalizer",
"normalized",
"converter",
"adapter",
"error",
"angular",
"ng2",
"ng4",
"ng5",
"ng6",
"ng7",
"ng8",
"ngx"
],
"author": "Ricardo Azzi Silva",
"license": "MIT",
"devDependencies": {
"tslint": "5.18.0",
"typescript": "3.7.5"
}
}