-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 905 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
{
"name": "dbg-expr",
"version": "1.0.2",
"description": "A helper for evalutating and logging an expression at the same time.",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "microbundle watch",
"build": "microbundle",
"test": "jest"
},
"keywords": [
"debug",
"console",
"logging",
"expression"
],
"author": "Parker McMullin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/google-mac/dbg-expr.git"
},
"homepage": "https://github.com/google-mac/dbg-expr",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"microbundle": "^0.11.0"
}
}