-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "light-uid",
"version": "1.1.0",
"description": "A lightweight random uid generator",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.modern.js",
"source": "index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle-crl --no-compress",
"build:dev": "microbundle-crl",
"test": "mocha --require ts-node/register test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/hakobpogh/light-uid.git"
},
"keywords": [
"uid",
"random",
"string",
"bundlephobia",
"light",
"light-uid",
"random-uid",
"uuid"
],
"author": "hakobpogh",
"license": "MIT",
"bugs": {
"url": "https://github.com/hakobpogh/light-uid/issues"
},
"homepage": "https://github.com/hakobpogh/light-uid",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"microbundle-crl": "^0.13.11",
"mocha": "^8.4.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"files": [
"index.ts",
"dist"
]
}