-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 821 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
{
"name": "chrome-webstore-stats",
"version": "1.0.7",
"description": "Fetch stats from Chrome webstore page",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node index.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/navi1995/Chrome-Webstore-Stats"
},
"keywords": [
"chrome",
"extension",
"webstore",
"stats"
],
"author": "Navi Jador",
"license": "ISC",
"dependencies": {
"node-fetch": "^2.6.0"
},
"homepage": "https://github.com/navi1995/Chrome-Webstore-Stats",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.5.0",
"mocha": "^8.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
}
}