-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.47 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-flat-polyfill",
"version": "1.0.1",
"description": "A polyfill for Array.prototype.flat and Array.prototype.flatMap",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "jonathantneal/array-flat-polyfill",
"homepage": "https://github.com/jonathantneal/array-flat-polyfill#readme",
"bugs": "https://github.com/jonathantneal/array-flat-polyfill/issues",
"main": "index.js",
"module": "index.mjs",
"files": [
"index.js",
"index.mjs"
],
"scripts": {
"build": "rollup --config --silent",
"postbuild": "gzip-size index.js",
"prepublishOnly": "npm run test && npm run build",
"test": "npm run test:lint && npm run test:tape",
"test:lint": "eslint src/*.js --cache --ignore-path .gitignore --quiet",
"test:tape": "jest"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-dev": "^2.0.0",
"gzip-size-cli": "^3.0.0",
"jest": "^24.7.1",
"rollup": "^1.10.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^4.0.4"
},
"eslintConfig": {
"extends": "dev",
"parser": "babel-eslint",
"rules": {
"no-unused-vars": [
0
]
}
},
"keywords": [
"javascript",
"js",
"flat",
"flatMap",
"concat",
"flatten"
],
"dependencies": {}
}