-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.14 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
47
48
{
"name": "fav_es5",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@flucoma/fav": "^0.0.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^3.0.1",
"core-js": "^3.6.5",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.27.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"spec": true,
"forceAllTransforms": true,
"useBuiltIns": "usage",
"corejs": {
"version": "3.8",
"proposals": true
}
}
]
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel node_modules/@flucoma/fav/src -d build",
"watch": "rollup --config --watch",
"bundle": "rollup --config"
},
"keywords": [],
"author": "",
"license": "ISC"
}