-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
{
"name": "screenr",
"version": "2.1.3",
"description": "",
"main": "dist/application/app.js",
"types": "dist/application/app.d.ts",
"scripts": {
"test": "mocha --require ts-node/register ./**/*.test.ts",
"build": "tsc",
"webpack": "npx webpack",
"clean": "rm -rf dist/",
"rebuild": "npm run clean && npm run build",
"prepublishOnly": "npm run rebuild",
"start": "npm run build && node ./dist/application/app.js"
},
"bin": {
"screenr": "./bin/screenr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cfe84/progressive-kite.git"
},
"author": "Charles Feval",
"license": "MIT",
"bugs": {
"url": "https://github.com/cfe84/screenr/issues"
},
"homepage": "https://github.com/cfe84/screenr#readme",
"devDependencies": {
"@types/html-escaper": "^3.0.2",
"@types/mailparser": "^3.4.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"mocha": "^7.1.1",
"should": "^13.2.3",
"testdouble": "^3.13.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@types/should": "^13.0.0",
"emailjs-imap-client": "^3.1.0",
"html-escaper": "^3.0.3",
"imap-simple": "^5.0.0",
"languagedetect": "^2.0.0",
"mailparser": "^3.6.5",
"multilingual-stemmer": "^1.0.2",
"porter-stemmer": "^0.9.1",
"remove-accents": "^0.5.0"
}
}