-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 975 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": "lazylanger",
"version": "1.0.0",
"description": "Lazy Langer is a tool to parse subtitle files and return the words and number of occurances from them.",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch & nodemon dist",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petar-prog91/LazyLanger.git"
},
"author": "Petar Milutinovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/petar-prog91/LazyLanger/issues"
},
"homepage": "https://github.com/petar-prog91/LazyLanger#readme",
"dependencies": {
"@types/node": "7.0.22",
"cors": "^2.8.4",
"express": "4.16.3",
"multer": "^1.3.0",
"nodemon": "1.17.5"
},
"devDependencies": {
"@types/node": "7.0.22",
"tsc": "1.20150623.0",
"tslint": "^5.10.0",
"typescript": "^2.9.1",
"typescript-eslint-parser": "3.0.0"
}
}