-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.45 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
{
"private": true,
"name": "ulid-generator",
"version": "1.0.0",
"description": "Cloudflare worker to generate large quantities of monotonic ULIDs",
"type": "module",
"scripts": {
"format": "prettier --write '*.{json,js}' 'src/**/*.ts' 'tests/**/*.spec.ts'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'tests/**/*.{js,ts}'",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "jest --config jest.config.json --verbose",
"start": "wrangler dev --local",
"publish": "npm run lint && npm run format && wrangler publish --legacy-env=true"
},
"author": "Truestamp <support@truestamp.com>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^3.11.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"service-worker-mock": "^2.0.5",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"ulid-workers": "^2.0.0",
"wrangler": "^2.0.6"
}
}