-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "timeflake",
"version": "0.1.1",
"description": "javascript & typescript implementation of timeflake",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prepublish": "tsc --build"
},
"author": "zzzz465 (madeline)",
"license": "MIT",
"repository": {
"url": "https://github.com/zzzz465/timeflake4js",
"type": "git"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/double-ended-queue": "^2.1.1",
"@types/lru-cache": "^5.1.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"bn.js": "^5.1.3",
"eslint": "^7.18.0",
"lru-cache": "^6.0.0"
}
}