-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 998 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
34
35
36
37
38
39
40
41
42
{
"name": "@grrr/hansel",
"version": "2.1.0",
"description": "Runner of handlers/enhancers.",
"main": "index.mjs",
"author": "GRRR <[email protected]>",
"homepage": "https://github.com/grrr-amsterdam/hansel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grrr-amsterdam/hansel.git"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^23.0.2",
"jest": "^24.9.0"
},
"scripts": {
"test": "jest",
"lint": "eslint . --ext=.js,.mjs"
},
"dependencies": {
"@grrr/utils": "^2.3.0"
},
"jest": {
"transformIgnorePatterns": [
"//node_modules/(?!.*.*/.*.mjs)/"
],
"transform": {
"^.+\\.m?js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"mjs"
]
}
}