-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "netflix-stats",
"version": "2.4.0",
"description": "Shows Netflix viewing stats to know about how you spend your time on Netflix.",
"main": "netfix-usage-stats/manifest.json",
"scripts": {
"build": "rm -f netflix-usage-stats.zip && npm run prettier-check && npm run zip",
"zip": "bestzip netflix-usage-stats.zip src/*",
"prettier-check": "prettier --check './src/**/*.html' './src/**/*.css' './src/**/*.js' './test/**/*.js'",
"prettier-format": "prettier --write './src/**/*.html' './src/**/*.css' './src/**/*.js' './test/**/*.js'",
"test": "jest --coverage --testTimeout=10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmartos/netflix-usage-stats.git"
},
"keywords": [
"stats",
"usage",
"analitycs"
],
"author": "hmartos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmartos/netflix-usage-stats/issues"
},
"homepage": "https://github.com/hmartos/netflix-usage-stats#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"(src|test)/**/*.{js,html,css}": [
"npm run prettier-format",
"git add"
]
},
"devDependencies": {
"bestzip": "^2.1.4",
"husky": "^4.2.1",
"jest": "^24.9.0",
"lint-staged": "^10.0.2",
"prettier": "^1.19.1",
"rewire": "^4.0.1"
}
}