-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.74 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
55
56
57
58
59
60
61
{
"name": "ulid-workers",
"version": "2.1.0",
"description": "ULID generator for Cloudflare workers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"prepublishOnly": "npm run build",
"test": "npm run build && npm run test:format && npm run test:specs",
"test:format": "prettier --check \"{src,test}/**/*.ts\"",
"test:specs": "npx ts-mocha -t 10000 --check-leaks --global crypto test/**/*.spec.ts",
"prepare": "husky install"
},
"files": [
"dist/**/*",
"CHANGELOG.md"
],
"lint-staged": {
"{source,test}/**/*.{js,ts}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryan-mars/ulid-workers.git"
},
"keywords": [
"ulid",
"uuid",
"id",
"generator",
"guid"
],
"author": "Ryan Marsh <[email protected]>",
"contributors": [
"Glenn Rempe <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ryan-mars/ulid-workers/issues"
},
"homepage": "https://github.com/ryan-mars/ulid-workers#readme",
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.16",
"@types/sinon": "^10.0.11",
"chai": "^4.3.6",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sinon": "^13.0.1",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
}
}