-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "@fidm/asn1",
"description": "ASN.1/DER, PEM for Node.js",
"authors": [
"Yan Qing <[email protected]>"
],
"version": "1.0.4",
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:fidm/asn1.git"
},
"homepage": "https://github.com/fidm/asn1",
"engines": {
"node": ">= 8"
},
"keywords": [
"asn1",
"ASN.1",
"pem",
"JavaScript",
"node"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^11.10.4",
"istanbul": "^1.1.0-alpha.1",
"tman": "^1.9.0",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333"
},
"scripts": {
"build": "rm -rf build && tsc",
"docs": "rm -rf docs && typedoc --out docs && touch docs/.nojekyll",
"test": "tman -r ts-node/register 'test/**/*.ts'",
"test-cov": "istanbul cover _tman -- 'test/**/*.ts' -r ts-node/register",
"lint": "tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'"
},
"files": [
"build",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}