-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 932 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
{
"name": "flavors.macro",
"version": "0.4.0",
"description": "Macro for building different flavors of a react-app ",
"keywords": [
"babel-plugin-macros"
],
"main": "lib/macro.js",
"files": [
"lib"
],
"scripts": {
"test": "jest 'tests'",
"build": "node_modules/@babel/cli/bin/babel.js src -d lib"
},
"author": "Nithin Gangadharan <[email protected]> (https://github.com/gnithin)",
"repository": {
"type": "git",
"url": "https://github.com/gnithin/flavors.macro"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"babel-core": "^6.26.3",
"babel-jest": "^24.1.0",
"babel-plugin-macros": "^2.5.0",
"babel-plugin-tester": "^6.0.0",
"jest": "^24.1.0"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4"
}
}