-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 875 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
{
"name": "yaml-to-js.macro",
"version": "0.2.0",
"description": "babel macro for converting yaml to js",
"main": "macro.js",
"scripts": {
"test": "jest",
"format": "prettier --single-quote --write **/*.js"
},
"keywords": [
"babel-plugin-macro",
"yaml",
"babel",
"macro",
"babel-plugin"
],
"author": "Lorefnon <lorefnon@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/lorefnon/yaml-to-js.macro.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"babel-plugin-macros": "^2.4.2",
"babel-plugin-tester": "^5.5.1",
"jest": "^23.6.0",
"prettier": "1.14.3"
},
"dependencies": {
"debug": "^4.1.0",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11"
},
"peerDependencies": {
"babel-plugin-macros": "^2.4.2"
}
}