forked from ecrmnn/collect.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
{
"name": "collect.js",
"version": "4.0.17",
"description": "Convenient and dependency free wrapper for working with arrays and objects.",
"main": "dist/index.js",
"typings": "index.d.ts",
"scripts": {
"pretest": "npm run transpile",
"test": "node_modules/.bin/mocha test/tests.js",
"transpile": "node_modules/babel-cli/bin/babel.js src --quiet --out-dir dist",
"bundle": "node_modules/.bin/webpack dist/index.js build/collect.js --output-library collect",
"uglify": "node_modules/.bin/uglifyjs build/collect.js --compress --mangle --output build/collect.min.js",
"build": "npm run transpile && npm run bundle && npm run uglify",
"eslint": "node_modules/.bin/eslint src/ test/",
"coverage": "npm run transpile && node_modules/.bin/nyc mocha test/tests.js",
"reporter": "node_modules/.bin/nyc report --reporter=html",
"prepublishOnly": "npm run build"
},
"babel": {
"presets": [
"env"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ecrmnn/collect.js"
},
"keywords": [
"collections",
"collection",
"collect",
"map",
"filter",
"group by",
"reduce",
"transform",
"pluck",
"pie",
"mapWithKeys",
"laravel",
"whereIn",
"values",
"unique"
],
"author": {
"name": "Daniel Eckermann",
"email": "[email protected]",
"url": "http://danieleckermann.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecrmnn/collect.js/issues"
},
"homepage": "https://github.com/ecrmnn/collect.js",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.6.1",
"benchmark": "^2.1.0",
"chai": "^4.1.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.5.0",
"hoax.js": "^1.0.0",
"mocha": "^3.5.2",
"nyc": "^11.0.2",
"uglify-js": "^3.2.2",
"webpack": "^3.10.0"
}
}