-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.43 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": "sa-unique-id",
"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; npm run rollup-browser",
"rollup-browser": "rollup -c rollup.browser.js",
"build-no-rollup": "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": {
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"rollup": "^2.27.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scalingapps/sa-unique-id.git"
},
"keywords": [
"uniqueid"
],
"author": "Scalingapps",
"license": "MIT",
"bugs": {
"url": "https://github.com/scalingapps/sa-unique-id/issues"
},
"homepage": "https://github.com/scalingapps/sa-unique-id#readme"
}