forked from snico-dev/guid-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1 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
{
"name": "ez-guid",
"version": "1.2.5",
"description": "Easy GUID type implementation for Typescript",
"scripts": {
"test": "mocha -r ts-node/register tests/*.spec.ts",
"build": "npx tsc lib/guid -t es3 -m commonjs -d --outDir dist"
},
"author": "ez-libs",
"contributors": [
{
"name": "NicolasDeveloper",
"url": "https://github.com/NicolasDeveloper"
},
{
"name": "gekkedev",
"url": "https://github.com/gekkedev"
},
{
"name": "Destinate",
"url": "https://github.com/Destinate"
}
],
"keywords": [
"typescript",
"guid",
"uuid",
"type"
],
"main": "./dist/guid.js",
"types": "./dist/guid.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ez-libs/ez-guid"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/mocha": "^8.2.0",
"@types/node": "^16.3.2",
"chai": "^4.1.2",
"mocha": "^9.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.1.5"
},
"dependencies": {}
}