-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.21 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
{
"name": "@hogiagroup/enumerable",
"version": "5.1.9",
"description": "Utilities for Iterable",
"readme": "README.md",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build-release": "npm run test && npm run build",
"build": "rimraf .\\dist && npm run lint && tsc",
"test": "npm run lint && karma start test/karma.conf.js",
"tdd": "karma start test/karma.conf.js --no-single-run --auto-watch",
"lint": "eslint -c .eslintrc.json --fix --ext .ts .",
"release": "dotenv release-it --"
},
"repository": {
"type": "git",
"url": "https://github.com/hogiagroup/enumerable"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"publishPath": "dist",
"publish": false
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@hogiagroup"
},
"keywords": [
"hogia",
"enumerable",
"iterable",
"iterator",
"lazy",
"list",
"array",
"generator",
"sorting",
"functional"
],
"author": "Hogia Business Products AB",
"license": "MIT",
"dependencies": {
"big.js": "6.0.3"
},
"devDependencies": {
"@types/big.js": "6.0.1",
"@types/jasmine": "3.6.2",
"@types/node": "14.14.14",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/eslint-plugin-tslint": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"copyfiles": "2.4.1",
"dotenv-cli": "^4.0.0",
"eslint": "7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.13",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "5.0.0",
"fork-ts-checker-webpack-plugin": "6.0.8",
"jasmine-core": "3.6.0",
"jsverify": "0.8.4",
"karma": "5.2.3",
"karma-chrome-launcher": "3.1.0",
"karma-jasmine": "4.0.1",
"karma-webpack": "4.0.2",
"npm": "^7.2.0",
"puppeteer": "5.5.0",
"release-it": "^14.2.2",
"rimraf": "3.0.2",
"ts-loader": "8.0.14",
"tslib": "2.1.0",
"typescript": "4.1.3",
"webpack": "4.x",
"webpack-cli": "4.2.0"
}
}