-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.51 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "movie-list",
"version": "4.0.0",
"description": "A node program to show a list of your movies sorted by rating",
"main": "lib/index.js",
"bin": {
"movie-list": "bin/movie-list"
},
"scripts": {
"lint": "run-p lint-*",
"lint-src": "eslint src --fix",
"lint-tests": "eslint __tests__ --fix",
"precommit": "lint-staged",
"commitmsg": "commitlint -e",
"babel": "babel src -d lib -s",
"build": "rimraf lib && npm run babel",
"jest": "jest",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run jest"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/noamokman/movie-list.git"
},
"keywords": [
"movie",
"imdb",
"list",
"rating"
],
"author": {
"name": "Noam Okman",
"email": "[email protected]",
"url": "https://github.com/noamokman"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/noamokman/movie-list/issues"
},
"homepage": "https://github.com/noamokman/movie-list",
"engines": {
"node": ">=6"
},
"dependencies": {
"caporal": "^0.10.0",
"chalk": "^2.4.1",
"cli-table3": "^0.5.0",
"configstore": "^3.1.2",
"debug": "^3.1.0",
"globby": "^8.0.1",
"lodash": "^4.17.10",
"movie-title": "^1.0.3",
"nested-error-stacks": "^2.0.1",
"omdb-api-pt": "^2.0.1",
"p-map": "^1.2.0",
"update-notifier": "^2.5.0",
"video-extensions": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-angular": "^7.0.1",
"babel-cli": "^6.26.0",
"babel-jest": "^23.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-noamokman": "^7.3.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-lodash": "^2.7.0",
"eslint-plugin-unicorn": "^4.0.3",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.1.3",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2"
},
"module": "src/index.js",
"jest": {
"notify": true,
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testMatch": [
"**/__tests__/**/*.spec.js"
]
}
}