-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
91 lines (91 loc) · 2.33 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
{
"name": "js-flock",
"version": "3.14.0",
"description": "Collection of neat modular utilities for bumping up development in NODE and Browser.",
"main": "index.js",
"author": "Stefan Novakovic <[email protected]>",
"contributors": [
"Daniel Roguljic <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/snovakovic/js-flock#readme",
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/snovakovic/js-flock/issues"
},
"scripts": {
"build": "node build",
"publish": "node publish",
"test:integration": "node test/integration/index.js",
"test": "istanbul cover --include-all-sources --config ./test/config/istanbul.yml _mocha -- --opts ./test/config/mocha.opts",
"codacy:coverage": "npm test && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snovakovic/js-flock.git"
},
"keywords": [
"deep-freeze",
"deepFreeze",
"deepPreventExtensions",
"deepSeal",
"delay",
"enum",
"es2015",
"es6",
"freeze",
"helpers",
"last",
"lastBy",
"order",
"order-by",
"orderBy",
"poll",
"castBoolean",
"preventExtensions",
"promise",
"promises",
"promisify",
"promisifyAll",
"seal",
"single",
"sort",
"sort-array",
"sort-by",
"sortBy",
"then",
"thenify",
"toEnum",
"utility",
"wait",
"waitFor"
],
"dependencies": {
"fast-sort": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"fs-extra": "^9.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^7.1.2",
"mocha-lcov-reporter": "^1.3.0",
"rollup": "^2.8.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"//": "WARNING: Do not remove!. Private is used to prevent accidental npm publish. Publish should be done only with npm run publish",
"private": true
}