forked from robertknight/babel-plugin-mockable-imports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "babel-plugin-mockable-imports",
"version": "1.7.1",
"description": "Babel plugin for mocking ES imports",
"main": "index.js",
"scripts": {
"checkformatting": "prettier --check *.js test/*.js",
"build": "babel helpers.js --out-dir lib",
"lint": "eslint --ignore-pattern lib/* .",
"format": "prettier --write *.js test/*.js",
"test": "mocha && npm run lint && npm run checkformatting",
"prepublishOnly": "npm run build"
},
"files": [
"index.js",
"lib/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robertknight/babel-plugin-mockable-imports.git"
},
"keywords": [
"mocking"
],
"author": "Robert Knight <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/robertknight/babel-plugin-mockable-imports/issues"
},
"homepage": "https://github.com/robertknight/babel-plugin-mockable-imports#readme",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-jsx": "^7.10.4",
"@babel/plugin-transform-destructuring": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.2.3",
"prettier": "1.16.4"
}
}