-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.47 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
51
52
53
54
55
56
57
58
{
"name": "spamd-client",
"version": "1.0.0",
"description": "NodeJS client for connecting to spamd/spamc server",
"license": "MIT",
"repository": "",
"keywords": [
"spamc",
"spamd",
"spamassasin"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5 --semi false",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.0.1",
"@types/node": "^6.14.2",
"coveralls": "^2.0.0",
"jest": "^23.6.0",
"jest-environment-node-debug": "^2.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"ts-jest": "^23.10.5",
"ts-node": "^3.2.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^3.1.1"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"mapCoverage": true
}
}