-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "timestamp-trusted",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"test": "jest --watch",
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/wosubtil/timestamp-trusted.git"
},
"keywords": [
"rfc3161",
"timestamp",
"trusted",
"tsa",
"timestamp authority"
],
"author": "Welinton Subtil <welinton.ti@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"sucrase": "^3.10.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"dependencies": {
"tmp": "^0.1.0"
}
}