-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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": "cinema-italy",
"version": "1.0.7",
"description": "CLI to list movies and cinemas in Italy",
"main": "lib",
"scripts": {
"build": "rm -rf lib && tsc",
"start": "ts-node src",
"prepublish": "npm run build",
"release-version": "smooth-release patch --validations --npm-version --npm-publish"
},
"repository": {
"type": "git",
"url": "[email protected]:buildo/cinema-italy"
},
"bin": {
"cinema-italy": "./cinema-italy"
},
"keywords": [],
"author": "Francesco Cioria <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/buildo/cinema-italy/issues"
},
"files": [
"lib",
"cinema-italy"
],
"homepage": "https://github.com/buildo/cinema-italy",
"dependencies": {
"axios": "^0.18.0",
"better-console": "^1.0.1",
"cheerio": "^1.0.0-rc.2",
"cli-table": "^0.3.1",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"lodash": "^4.17.5"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.7",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/lodash": "^4.14.106",
"@types/node": "^9.6.2",
"smooth-release": "^8.0.4",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
}
}