-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.19 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
49
50
51
52
53
{
"name": "@bcodes/dom-log",
"version": "2.2.3",
"description": "Log JSON stringified model objects to the DOM - side by side option, terminal styled",
"author": "briancodes (http://bcodes.io)",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/briancodes/dom-log.git"
},
"scripts": {
"serve": "parcel app/app-index.html --out-dir app/build --open",
"build": "microbundle --name DomLog",
"test": "jest",
"coverage": "jest --coverage",
"release": "npm run build && np"
},
"source": "lib/index.js",
"main": "dist/index.js",
"module": "dist/index.m.js",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "types/index.d.ts",
"files": [
"lib",
"dist",
"types"
],
"keywords": [
"DOM",
"console",
"log",
"JavaScript"
],
"np": {
"yarn": false,
"cleanup": false
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "7.8.7",
"@types/jest": "25.1.4",
"babel-preset-env": "1.7.0",
"eslint": "6.8.0",
"jest": "25.1.0",
"microbundle": "0.11.0",
"np": "5.2.1",
"parcel-bundler": "1.12.4"
}
}