-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
42
43
44
45
46
{
"name": "time-warp-manipulation",
"displayName": "Time Warp - Time Manipulation Library",
"version": "1.1.1",
"description": "A TypeScript-based library for manipulating JavaScript time: freeze, fast-forward, rewind, or accelerate the clock.",
"type": "module",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"prepublishOnly": "npm run build",
"demo": "node __tests__/demo.js",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md,html}\""
},
"keywords": [
"time",
"date",
"freeze",
"fast-forward",
"rewind",
"accelerate",
"testing",
"time-travel"
],
"author": "Son Nguyen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hoangsonww/Time-Warp-Manipulation-Library.git"
},
"bugs": {
"url": "https://github.com/hoangsonww/Time-Warp-Manipulation-Library/issues"
},
"homepage": "https://github.com/hoangsonww/Time-Warp-Manipulation-Library#readme",
"devDependencies": {
"@types/jest": "^29.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"prettier": "^3.5.3",
"time-warp-manipulation": "^1.1.0"
}
}