forked from jackkum/node-pdu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1005 Bytes
/
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
{
"name": "node-pdu",
"version": "2.0.0",
"description": "Creates and parses SMS PDU strings",
"license": "ISC",
"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": {},
"devDependencies": {
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"eslint": "8.36.0",
"typedoc": "0.23.28",
"typescript": "5.0.2"
},
"scripts": {
"build": "yarn build:lib && yarn build:docs",
"build:test": "tsc testTS/index.ts --outDir test --skipLibCheck",
"build:lib": "tsc",
"build:docs": "typedoc --entryPoints src/index.ts --out docs --excludePrivate --customCss typedoc.css",
"lint": "eslint src --ext .ts",
"prepack": "yarn build:lib",
"test": "yarn build:lib && yarn build:test && node test/index.js"
},
"keywords": [
"pdu",
"sms"
]
}