-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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": "cycle-log-driver",
"version": "0.1.3",
"description": "A simple logging driver for readable output in the console in CycleJS",
"main": "dist/log-driver.js",
"scripts": {
"clean": "rm -rf dist",
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/tshelburne/cycle-log-driver"
},
"keywords": [
"cyclejs",
"cycle",
"log",
"logging"
],
"author": {
"name": "Tim Shelburne",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tshelburne/cycle-log-driver/issues"
},
"homepage": "https://github.com/tshelburne/cycle-log-driver",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": "auto"
}
]
]
}
}