-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "editablebrowser",
"version": "1.1.1",
"description": "make document editable in browser using inbrowseredit",
"main": "index.js",
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"unpkg": "index.min.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganeshkbhat/inbrowseredit.git"
},
"bugs": {
"url": "https://github.com/ganeshkbhat/inbrowseredit/issues"
},
"homepage": "https://github.com/ganeshkbhat/inbrowseredit#readme",
"scripts": {
"test": "mocha --reporter spec --recursive --timeout 60000",
"uglify": "uglifyjs --compress --mangle reserved=['$','require','exports'] index.js -o index.min.js",
"gitadd": "git add .",
"build": "tsc"
},
"pre-commit": {
"run": [
"uglify",
"gitadd",
"test"
]
},
"keywords": [
"editablebrowser",
"editableBody",
"disableBodyEditable",
"editable browser",
"editable Body",
"disable Body Editable",
"make browser editable",
"make browser document editable",
"disable browser document body editable"
],
"author": "Ganesh <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/eslint": "^8.56.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.16",
"chai": "^4.4.1",
"live-server": "^1.2.2",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"sinon": "^17.0.1",
"typescript": "^5.3.3",
"uglify-js": "^3.17.4",
"unimported": "^1.31.1"
}
}