-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "@usefultools/utils",
"version": "6.3.1",
"description": "A collection of light-weight methods and helpers for defensive programming",
"main": "./dist/main.js",
"typings": "./dist/main.d.ts",
"engines": {
"node": ">=9.10.0",
"npm": ">=6.1.0"
},
"scripts": {
"start": "make compile && node ./dist/main.js",
"test": "make test"
},
"dependencies": {
"shortid": "^2.2.15",
"tslib": "^1.10.0",
"uuid": "^3.3.3",
"uuid-validate": "0.0.3"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^13.1.2",
"@types/shortid": "0.0.29",
"@types/uuid": "^3.4.6",
"@types/uuid-validate": "0.0.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"prettier-standard": "^16.1.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-security": "^1.16.0",
"typescript": "^3.7.4"
},
"repository": {
"type": "git",
"url": "[email protected]:litchi-io/utils.git"
},
"author": "Slavo Vojacek <[email protected]>",
"license": "ISC"
}