forked from idealclover/GitHub-Star-Counter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.09 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.09 KB
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
{
"name": "github-star-counter",
"version": "1.0.1",
"description": "An API to count a GitHub user's total stars, working with shield.io.",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development npm run build",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive transpiled/test",
"transpile": "tsc --project ./test"
},
"author": "idealclover <idealclover@163.com> & fengkx <liangkx8237@gmail.com>",
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@cloudflare/workers-types": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.3",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.12",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
}
}