-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.16 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.16 KB
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
{
"name": "fisher-yates-map",
"version": "1.0.0",
"main": "index.js",
"author": "Jessica Stokes <hello@jessicastokes.net>",
"license": "MIT",
"scripts": {
"prepublish": "babel src --out-dir . --source-maps inline --ignore \"**/*.spec.js\"",
"test": "jest",
"lint": "eslint src",
"lint-and-fixup": "eslint --fix src"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^26.0.0",
"eslint": "^7.0.0",
"jest": "^26.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
]
}
}
]
],
"plugins": [
"@babel/plugin-proposal-function-bind"
]
},
"jest": {
"rootDir": "src",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/"
]
}
}