-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
{
"name": "@herb-tools/dev-tools",
"version": "0.9.1",
"description": "Development tools for visual debugging in HTML+ERB templates",
"type": "module",
"license": "MIT",
"homepage": "https://herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues/new?title=Package%20%60@herb-tools/dev-tools%60:%20",
"repository": {
"type": "git",
"url": "git+https://github.com/marcoroth/herb.git",
"directory": "javascript/packages/dev-tools"
},
"main": "./dist/herb-dev-tools.umd.js",
"module": "./dist/herb-dev-tools.esm.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "yarn clean && rollup -c",
"dev": "rollup -c -w",
"clean": "rimraf dist",
"test": "echo 'TODO: add tests'",
"prepublishOnly": "yarn clean && yarn build && yarn test"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/herb-dev-tools.esm.js",
"default": "./dist/herb-dev-tools.umd.js"
}
},
"dependencies": {
"@herb-tools/core": "0.9.1"
},
"files": [
"package.json",
"README.md",
"dist/",
"src/"
]
}