-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.95 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
{
"name": "@flatten/array",
"version": "1.1.8",
"description": "Fastest array flatten.",
"main": "lib/index.js",
"files": [
"lib/index.js"
],
"keywords": [
"flatten",
"flatten array",
"array flatten",
"array",
"fast",
"fastest",
"best"
],
"author": "Eli Doran <eli+npm@elidoran.com>",
"license": "MIT",
"scripts": {
"lint": "eslint --no-eslintrc --config build/eslint/eslint.js lib/index.js",
"test": "_mocha --require coffee-script/register --reporter spec --check-leaks test/lib/*.coffee",
"test4": "nave use 4 npm test",
"test6": "nave use 6 npm test",
"test8": "nave use 8 npm test",
"test10": "nave use 10 npm test",
"test12": "nave use 12 npm test",
"tests": "npm run test4 && npm run test6 && npm run test8 && npm run test10 && npm run test12",
"coverage": "istanbul cover -x 'build/**' _mocha -- --require coffee-script/register -R spec test/lib/*.coffee",
"publish-coverage": "npm run coverage && cat coverage/lcov.info | coveralls",
"coverage-clean": "rm -rf ./coverage",
"perf": "node benchmark/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/elidoran/flatten-array.git"
},
"bugs": "http://github.com/elidoran/flatten-array/issues",
"devDependencies": {
"@optimal/fn": "^0.3.1",
"arr-flatten": "^1.1.0",
"array-flatten": "^2.1.2",
"array_flatten": "^1.0.0",
"benchmarked": "^2.0.0",
"chalk": "^2.4.2",
"coffee-script": "^1.12.7",
"comma-number": "^2.0.0",
"compute-flatten": "^1.0.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"flatten": "^1.0.2",
"flatten-array": "^1.0.0",
"has-flag": "^3.0.0",
"istanbul": "^0.4.5",
"just-flatten-it": "^2.1.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nave": "^2.2.4",
"npm-array-flatten": "^1.0.4",
"pad": "^2.3.0",
"reduce-flatten": "^2.0.0"
},
"dependencies": {},
"engines": {
"node": ">=4"
}
}