-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "array-mixer",
"version": "0.7.3",
"description": "ArrayMixer is a simple function to reorder a group of arrays in the way you want.",
"main": "release/array-mixer.js",
"scripts": {
"test": "ava src/spec.js",
"release": "babel src --presets babel-preset-env --out-dir release --source-maps --ignore ./src/spec.js --minified",
"prepublish": "npm run release",
"coverage": "source .generate-coverage.sh",
"readme": "tsc && node ./.readme/generateImages.js",
"coverage-to-codacy": "cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage"
},
"ava": {
"files": [
"src/spec.js"
],
"require": [
"babel-register"
],
"babel": "inherit",
"source": [
"src/array-mixer.js"
],
"modules": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/teles/array-mixer.git"
},
"keywords": [
"arrays",
"es6",
"reorder"
],
"author": "Teles <josetelesmaciel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/teles/array-mixer/issues"
},
"homepage": "https://github.com/teles/array-mixer#readme",
"devDependencies": {
"@types/node": "^20.12.12",
"@types/pug": "^2.0.10",
"ava": "0.22.0",
"babel": "6.23.0",
"babel-cli": "6.26.0",
"babel-minify": "0.2.0",
"babel-preset-env": "1.6.0",
"codacy-coverage": "2.0.2",
"eslint": "6.8.0",
"istanbul": "0.4.5",
"nyc": "15.1.0",
"pug": "^3.0.3",
"remap-istanbul": "0.9.5",
"typescript": "^5.4.5"
}
}