generated from napi-rs/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.04 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.04 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@keetanetwork/asn1-napi-rs",
"version": "1.2.1",
"homepage": "https://github.com/KeetaNetwork/asn1-napi-rs#readme",
"author": "Tanveer Wahid <twahid@keeta.com>",
"description": "KeetaNetwork ASN.1 TypeScript-Rust NAPI library",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/KeetaNetwork/asn1-napi-rs.git"
},
"license": "SEE LICENSE IN LICENSE",
"files": [
"index.d.ts",
"index.js",
"README.md",
"*.node"
],
"napi": {
"name": "asn1-napi-rs",
"triples": {
"defaults": false,
"additional": [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-apple-darwin"
]
}
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"scripts": {
"ava": "ava",
"bench": "node -r @swc-node/register benchmark/bench.ts",
"eslint": "eslint",
"napi": "napi",
"prettier": "prettier",
"make:test": "make test",
"make:clean": "make clean",
"make:do-bench": "make do-bench",
"make:distclean": "make distclean"
},
"devDependencies": {
"@napi-rs/cli": "2.14.7",
"@swc-node/register": "1.10.9",
"@types/node": "18.8.3",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"asn1js": "2.4.0",
"ava": "4.3.3",
"benny": "3.7.1",
"chalk": "5.0.1",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"typescript": "4.8.4"
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"eslint -c .eslintrc.yml --fix"
],
"*.@(js|ts|tsx|yml|yaml|md|json)": [
"prettier --write"
]
},
"ava": {
"require": [
"@swc-node/register"
],
"extensions": [
"ts"
],
"timeout": "2m",
"workerThreads": false,
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
}
},
"bugs": {
"url": "https://github.com/KeetaNetwork/asn1-napi-rs/issues"
}
}