-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.81 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
{
"name": "gtools",
"version": "0.2.62",
"description": "Small library including utils methods for easier life",
"main": "./index.js",
"module": "./_esm5/index.js",
"es2015": "./_esm/index.js",
"esnext": {
"main": "./_esm5/index.js",
"browser": "./_esm5/index.js"
},
"types": "./index.d.ts",
"type": "commonjs",
"sideEffects": false,
"homepage": "https://g43riko.github.io/GTools",
"keywords": [
"tools",
"utils",
"typescript",
"javascript"
],
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/G43riko/GTools.git"
},
"bugs": {
"email": "gcsollei@hotmail.com",
"url": "https://github.com/G43riko/GTools/issues"
},
"scripts": {
"prepare_old": "npm run clean && npm run build && npm run doc",
"test": "ts-mocha --paths -p ./tsconfig.json ./src/**/*.spec.ts",
"coverage": "nyc --extension=.ts --extension=.js --exclude=src/**/*.spec.ts npm test && nyc report --reporter=text-lcov | coveralls",
"coverage2": "nyc --extension=.ts --extension=.js --exclude=src/**/*.spec.ts --reporter=lcov npm test",
"tsc": "tsc",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint --fix src/**/*.ts",
"tslint": "tslint --project .",
"build:old": "tsc --outDir dist && tsc -m es6 --outDir dist/_esm && npm run build:webpack:prod && npm run copy",
"build": "npm run clean && npm run build:ts && npm run build:webpack:prod && npm run copy",
"build:webpack:prod": "webpack --config webpack.prod.js",
"build:ts": "tsc -b ./src/tsconfig.cjs.json ./src/tsconfig.esm.json ./src/tsconfig.esm5.json ./src/tsconfig.types.json",
"release": "npm publish dist",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish",
"doc": "typedoc src --out docs",
"pack_old": "npm run tsc && webpack",
"copy": "node copy-package.js",
"clean": "rimraf out doc dist docs coverage bin .nyc_output _bundles lib lib-esm",
"lint": "npm run tslint && npm run eslint"
},
"author": {
"email": "gcsollei@hotmail.com",
"name": "Gabriel Csollei"
},
"browser": {
"http": false,
"https": false,
"net": false,
"fs": false,
"path": false,
"stream": false,
"tls": false
},
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.3.4",
"codelyzer": "^6.0.2",
"copy": "^0.3.2",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rxjs": "^3.3.6",
"eslint-plugin-sonarjs": "^0.10.0",
"mocha": "^9.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"sonarjs": "^1.0.0",
"terser-webpack-plugin": "^5.1.4",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-clean-code": "^0.2.10",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-sonarts": "^1.9.0",
"typedoc": "^0.21.6",
"ts-loader": "^9.2.5",
"ts-mocha": "^8.0.0",
"typescript": "4.2.4",
"rimraf": "^3.0.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"glob": "^7.1.7",
"moment": "^2.29.1",
"tslib": "^2.3.1"
}
}