-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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": "mailsac",
"version": "0.2.5",
"description": "Mailsac API Library",
"main": "dist/mailsac.js",
"types": "dist/index.d.ts",
"unpkg": "dist/mailsac.js",
"scripts": {
"test": "jest --config jest.config.ts --testTimeout=10000",
"lint": "tslint -p . -t stylish",
"build": "tsc --emitDeclarationOnly && webpack",
"prepublishOnly": "yarn lint --fix && yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yovanoc/mailsac.git"
},
"keywords": [
"mailsac",
"typescript",
"library"
],
"author": "Christopher Yovanovitch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yovanoc/mailsac/issues"
},
"homepage": "https://github.com/yovanoc/mailsac#readme",
"devDependencies": {
"@types/config": "^0.0.39",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.0",
"config": "^3.3.1",
"jest": "^27.1.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.1.0",
"ts-node": "^10.2.1",
"tslint": "^6.1.2",
"tslint-loader": "^3.5.3",
"typescript": "^4.2.4",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"axios": "^0.21.1"
}
}