-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 906 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": "for-own.macro",
"version": "1.0.0",
"description": "A babel-macro that makes for-in only visit own properties",
"keywords": [
"babel-plugin-macros"
],
"main": "src/index.js",
"files": [
"src",
"LICENSE"
],
"scripts": {
"test": "jest"
},
"author": {
"name": "Nicolò Ribaudo",
"url": "https://github.com/nicolo-ribaudo"
},
"license": "MIT",
"dependencies": {
"babel-plugin-macros": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-plugin-tester": "^6.0.0",
"jest": "^24.1.0"
},
"jest": {
"testMatch": [
"**/test/index.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/nicolo-ribaudo/for-own.macro"
},
"bugs": {
"url": "https://github.com/nicolo-ribaudo/for-own.macro/issues"
},
"homepage": "https://github.com/nicolo-ribaudo/for-own.macro#readme"
}