-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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": "vox-populi",
"version": "0.0.25",
"description": "A conflict-free replicated datatype system for counting votes",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist",
"test": "jest --coverage --roots ./tests",
"test:watch": "jest --watch --roots ./tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npetrangelo/vox-populi.git"
},
"keywords": [
"voting",
"democracy"
],
"author": "Nathan Petrangelo <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/npetrangelo/vox-populi/issues"
},
"homepage": "https://github.com/npetrangelo/vox-populi#readme",
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^17.0.41",
"@types/prettier": "^2.6.3",
"babel-cli": "^6.26.0",
"dotenv": "^16.0.1",
"jest": "^28.1.1",
"supertest": "^6.2.3",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"tslint": "^6.1.3",
"typescript": "^4.7.3"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/src"
]
}