-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 996 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
{
"name": "@ripreact/logger",
"version": "1.0.3",
"description": "An opinionated logger for browser devtools.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/ripreact/logger",
"author": "Marina Miyaoka <miyaokamarina@gmail.com> (https://twitter.com/miyaokamarina)",
"license": "MIT",
"scripts": {
"prepublish": "tsc && babel src/index.ts -so dist/index.esm.js --config-file ./babel.config.esm.js && babel src/index.ts -so dist/index.cjs.js --config-file ./babel.config.cjs.js"
},
"dependencies": {
"@ripreact/hsl": "^1.0.1",
"string-hash": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/node": "^12.11.1",
"@types/string-hash": "^1.1.1",
"typescript": "^3.7.1-rc"
}
}