-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
{
"name": "ts-token-generator",
"version": "1.0.4",
"description": "Typescript Library Project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/CodeSnooker/ts-token-generator.git"
},
"scripts": {
"dev": "ts-node ./lib/index.ts",
"prod": "node dist/index.js",
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"test": "jest --detectOpenHandles --forceExit",
"cover": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:cover": "jest --coverage && codecov -f coverage/*.json",
"format": "prettier --write \"lib/**/*.ts\" \"lib/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint && npm run build",
"version": "git add -A",
"postversion": "git push origin master && git push --tags"
},
"keywords": [
"typescript",
"uid",
"uuid",
"token",
"generator",
"random",
"unique"
],
"author": "Paras Mendiratta <code.snooker@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.9.4",
"@types/uuid": "^3.4.4",
"codecov": "^3.1.0",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"prettier": "^1.14.2",
"ts-jest": "^23.1.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"dependencies": {
"uuid": "^3.3.2"
}
}