-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 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
48
49
50
51
52
53
54
{
"name": "undox",
"version": "1.4.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/JannicBeck/undox"
},
"author": "jannicbeck <jannicbeck@gmail.com>",
"license": "MIT",
"files": [
"dist",
"src",
"index.ts"
],
"scripts": {
"clean": "rimraf dist coverage dist",
"build": "tsc --declaration --strict index.ts --outDir dist",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:cov": "npm test -- --coverage",
"prepare": "npm run clean && npm run build"
},
"keywords": [
"redux",
"undo",
"redo",
"undoable",
"undo-redo",
"redux-undo",
"react-undo",
"ngrx-undo",
"angular-undo",
"angular2-undo"
],
"devDependencies": {
"@types/jest": "^26.0.21",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^3.9.6"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/test/.*\\.test.(ts|tsx|js)$"
}
}