-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "undoh",
"author": "Denis Giffeler",
"private": false,
"license": "GPL",
"version": "1.2.2",
"description": "This Typescript module provides an undo class that can be used to implement a simple undo/redo mechanism.",
"main": "lib/undo.js",
"types": "lib/undo.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/giffeler/undoh.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"undo-redo",
"undomanager",
"typescript",
"javascript",
"wasm"
],
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/giffeler/undoh/issues"
},
"homepage": "https://github.com/giffeler/undoh/blob/main/README.md",
"devDependencies": {
"@types/jest": "^29.2.3",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}