-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.09 KB
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
{
"name": "collection.js",
"description": "Minimalistic JavaScript library for working with collections of data.",
"homepage": "https://github.com/kobezzza/Collection",
"main": "collection.js",
"module": "src/index.js",
"typings": "collection.d.ts",
"version": "6.8.1",
"license": "MIT",
"author": {
"name": "kobezzza",
"email": "kobezzza@mail.ru",
"url": "https://github.com/kobezzza"
},
"repository": {
"type": "git",
"url": "https://github.com/kobezzza/Collection.git"
},
"bugs": {
"url": "https://github.com/kobezzza/Collection/issues"
},
"scripts": {
"test": "jasmine",
"test-coverage": "gulp test:browser && gulp test:browser:dev && gulp test:node",
"full-test": "npm run test-coverage && yaspeller ./"
},
"keywords": [
"javascript",
"iterators",
"collections",
"threads",
"generators"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@types/gulp": "^4.0.9",
"@types/gulp-load-plugins": "^0.0.33",
"@types/node": "^16.11.12",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"closurecompiler-externs": "^1.0.4",
"coveralls": "^3.1.1",
"del": "^6.0.0",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"google-closure-compiler": "^20211201.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-bump": "^3.2.0",
"gulp-closure-compiler": "^0.4.0",
"gulp-eol": "^0.2.0",
"gulp-header": "^2.0.9",
"gulp-ignore": "^3.0.0",
"gulp-istanbul": "^1.1.3",
"gulp-jasmine": "^4.0.0",
"gulp-load-plugins": "^2.0.7",
"gulp-monic": "^2.0.15",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-run": "^1.7.1",
"gulp-wrap": "^0.15.0",
"istanbul": "^0.4.5",
"jasmine": "^3.10.0",
"merge2": "^1.4.1",
"monic": "^2.6.1",
"rollup": "^2.61.0",
"rollup-plugin-babel": "^4.4.0",
"sugar": "^2.0.6",
"through2": "^4.0.2",
"vinyl": "^2.2.1",
"vinyl-fs": "^3.0.3",
"yaspeller": "^8.0.0"
}
}