-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "content-editable",
"version": "2.0.1",
"description": "An HTML element that makes its content editable",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/markcellus/content-editable/issues"
},
"homepage": "https://github.com/markcellus/content-editable#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/markcellus/content-editable.git"
},
"keywords": [
"content editable component",
"content editable",
"content editable element",
"editable input element",
"editable element",
"editable webcomponent",
"editable textfield component",
"inline edit component",
"inline edit",
"inline",
"editable",
"edit text field"
],
"author": "Mark",
"engines": {
"node": ">=14.19"
},
"main": "dist/content-editable.js",
"types": "dist/content-editable.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "web-test-runner && npm run lint",
"test:src": "web-test-runner",
"banner": "banner-cli dist/*.js",
"build": "rm -rf dist/* && rollup -c",
"build:dev": "rollup -c --watch --dev",
"start": "run-p build:dev serve",
"serve": "servor examples --reload --browse",
"lint": "npm run lint:scripts && npm run lint:format",
"lint:scripts": "eslint src/**/*",
"lint:format": "prettier --check '**/*'",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@open-wc/testing": "^3.1.5",
"@types/chai": "^4.1.7",
"@types/mocha": "^10.0.0",
"@types/sinon": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@web/dev-server-esbuild": "^0.3.0",
"@web/test-runner": "^0.15.0",
"banner-cli": "0.14.3",
"chai": "^4.2.0",
"eslint": "^7.27.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"pretty-quick": "^3.0.0",
"release-it": "~15.6.0",
"rollup": "^2.1.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.34.0",
"servor": "^4.0.2",
"sinon": "^15.0.1",
"typescript": "^4.2.2"
},
"dependencies": {
"anchorme": "^2.1.2"
}
}