-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (46 loc) · 1.27 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": "@timondev/snowflake-id",
"version": "1.1.0",
"description": "Snowflake-ID Generator written in typescript",
"main": "dist/snowflake.js",
"types": "dist/snowflake.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"clean": "rimraf dist"
},
"keywords": [
"snowflake",
"id",
"generator"
],
"author": "TimonDEV",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timondev/snowflake-id.git"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"@types/node": "^17.0.13",
"remove": "^0.1.5"
},
"dependencies": {
}
}