-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
{
"type": "module",
"name": "id64",
"version": "1.3.5",
"homepage": "https://github.com/epiphanous/id64#readme",
"description": "Generate short, globally unique, time-sortable, url-safe, lexicographically stable string identifiers.",
"main": "lib/cjs/index.cjs",
"module": "lib/esm/index.mjs",
"types": "lib/types/index.d.ts",
"files": [
"src",
"lib"
],
"exports": {
"require": "./lib/cjs/index.cjs",
"import": "./lib/esm/index.mjs"
},
"bin": {
"id64": "./id64.js"
},
"repository": {
"type": "git",
"url": "git@github.com/epiphanous/id64.git"
},
"scripts": {
"clean": "rimraf lib",
"declarations": "tsc -p tsconfig.json",
"build:esm": "BABEL_ENV=esmUnbundled babel src --extensions '.ts' --out-dir 'lib/esm' --out-file-extension .mjs --source-maps",
"build:cjs": "BABEL_ENV=cjs babel src --extensions '.ts' --out-dir 'lib/cjs' --out-file-extension .cjs --source-maps",
"build": "yarn clean && yarn build:esm && yarn build:cjs && yarn declarations",
"id64": "./id64.js",
"test": "jest"
},
"author": "Robert Lyons <nextdude@gmail.com>",
"license": "MIT",
"dependencies": {
"d64": "^1.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"@types/uuid": "^8.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
}
}