generated from stephendltg/node-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@stephen-shopopop/ulid",
"version": "1.2.1",
"description": "generate ulid",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.15.3",
"npm": ">=6.14.11"
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stephen-shopopop/ulid.git"
},
"bugs": {
"url": "https://github.com/stephen-shopopop/ulid/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"contributors": [
],
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest --reporters=default",
"build": "rimraf dist && tsc --build",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"lint": "ts-standard --verbose | snazzy",
"lint:fix": "ts-standard --fix",
"typecheck": "tsc --noEmit",
"release": "standard-version",
"prerelease": "standard-version -- --prerelease",
"fix": "standard-version -- --release-as minor",
"doc": "rimraf docs && npx typedoc src/index.ts"
},
"files": [
"dist"
],
"keywords": [
"ULID"
],
"author": "stephen-shopopop <[email protected]>",
"license": "ISC",
"simple-git-hooks": {
"pre-commit": "npx commitlint --edit $1 & npm run lint",
"pre-push": "npm run typecheck"
},
"ts-standard": {
"ignore": [
"dist",
"docs",
"jest.config.ts",
"commitlint.config.js"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.25",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"snazzy": "^9.0.0",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-standard": "^11.0.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"dependencies": {}
}