-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.24 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
{
"name": "ranked-voting",
"version": "0.0.4",
"description": "Ranked choice voting library",
"repository": {
"type": "git",
"url": "https://github.com/mikey-t/ranked-voting-ts.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"scripts": {
"build": "gulp build",
"example": "node dist/src/example.js",
"watch": "tsc --watch",
"test": "mocha || exit 0",
"test:coverage": "nyc mocha || exit 0",
"clean": "gulp clean",
"pack": "gulp pack",
"tsc": "tsc",
"prepublish": "gulp build"
},
"keywords": [],
"author": "Mike Thompson",
"license": "MIT",
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test",
"coverage",
"src/index.ts",
"src/example.ts",
"gulpfile.js",
"example-consumer/*"
],
"reporter": [
"html",
"text"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.60",
"chai": "^4.3.10",
"fs-extra": "^10.1.0",
"gulp": "^4.0.2",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@mikeyt23/node-cli-utils": "^1.4.1"
}
}