-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 928 Bytes
/
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
{
"name": "rescript-use-babel-jest-config",
"version": "1.0.0",
"description": "Use your own Babel Jest configuration in Create React App",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "jsxtools/rescript-use-babel-jest-config",
"homepage": "https://github.com/jsxtools/rescript-use-babel-jest-config#readme",
"bugs": "https://github.com/jsxtools/rescript-use-babel-jest-config/issues",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "eslint index.js --cache --ignore-path .gitignore --resolve-plugins-relative-to node_modules"
},
"devDependencies": {
"eslint": "^6.1.0"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 10,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
}
}
}