-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "sa-unique-id-node",
"version": "1.1.5",
"description": "A simple unique id generator that produce a unique id that is 23 chars/bytes long",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --preserveSymlinks true;",
"build-tests": "TS_NODE_PROJECT='./tsconfig.tests.json' tsc",
"OLDtest": "TS_NODE_PROJECT='./tsconfig.tests.json' mocha -r ts-node/register tests/**/*.spec.ts",
"test": "TS_NODE_PROJECT='./tsconfig.tests.json' mocha -r ts-node/register -r tsconfig-paths/register tests/**/*.spec.ts",
"lint": "prettier --write '**/*.{ts,js}'"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.3",
"underlog": "^0.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scalingapps/sa-unique-id-node.git"
},
"keywords": [
"uniqueid"
],
"author": "Scalingapps",
"license": "MIT",
"bugs": {
"url": "https://github.com/scalingapps/sa-unique-id-node/issues"
},
"homepage": "https://github.com/scalingapps/sa-unique-id-node#readme"
}