-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "node-pdu",
"version": "2.0.2",
"description": "Creates and parses SMS PDU strings",
"license": "MIT",
"author": "jackkum",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jackkum/node-pdu.git"
},
"homepage": "https://github.com/jackkum/node-pdu",
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^16.18.46",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"prettier": "3.0.3",
"typedoc": "~0.25.0",
"typescript": "5.2.2"
},
"scripts": {
"build": "yarn build:lib && yarn build:docs",
"build:tests": "tsc --project tests",
"build:lib": "tsc",
"build:docs": "typedoc --entryPoints src/index.ts --out docs --excludePrivate --customCss typedoc.css",
"lint": "yarn lint:format && yarn lint:code && yarn lint:tests",
"lint:code": "eslint src --ext .ts",
"lint:tests": "eslint tests --ext .ts",
"lint:format": "prettier --check .",
"prepack": "yarn build:lib",
"run:tests": "node tests-dist/index.js",
"test": "yarn build:lib && yarn build:tests && yarn run:tests"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"pdu",
"sms"
]
}