-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
46 lines (46 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
43
44
45
46
{
"name": "babel-plugin-transform-require-ignore",
"version": "0.1.1",
"description": "ignore the required file by extension type",
"main": "lib/index.js",
"ava": {
"files": [
"src/__tests__/*.spec.js"
],
"require": [
"babel-core/register"
],
"babelrc": "inherit"
},
"scripts": {
"test": "npm run lint && ava -v",
"build": "babel src/ --out-dir lib/",
"pre-publish": "npm run build",
"lint": "eslint src/"
},
"license": "MIT",
"keywords": [
"babel-plugin"
],
"devDependencies": {
"ava": "0.21.0",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-es2015": "6.24.1",
"eslint": "4.3.0",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morlay/babel-plugin-transform-require-ignore.git"
},
"author": "",
"bugs": {
"url": "https://github.com/morlay/babel-plugin-transform-require-ignore/issues"
},
"homepage": "https://github.com/morlay/babel-plugin-transform-require-ignore#readme"
}