forked from adamkdean/zerossl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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": "zerossl",
"version": "2.0.0",
"description": "ZeroSSL REST API wrapper",
"keywords": [
"ZeroSSL",
"SSL",
"TLS",
"CSR",
"RSA",
"PKI",
"API"
],
"author": "Adam K Dean <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adamkdean/zerossl"
},
"main": "dist/lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts lib",
"lint:fix": "eslint --fix --ext .ts lib",
"prebuild": "rm -r dist",
"prepublishOnly": "npm run build",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/unit/*.ts'",
"test:integration": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/integration/*.ts'"
},
"devDependencies": {
"@edge/eslint-config-typescript": "^0.1.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"@types/node-forge": "^1.0.0",
"@types/superagent": "^4.1.14",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"dotenv": "^14.1.0",
"eslint": "^7.32.0",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"node-forge": "^1.2.1",
"superagent": "^7.1.1"
}
}