-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 744 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 744 Bytes
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
{
"name": "dobble",
"version": "1.1.2",
"description": "A utility to generate symbol combinations for the game Dobble",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neob91/dobble.git"
},
"author": "Andrzej Bartosiński",
"license": "ISC",
"bugs": {
"url": "https://github.com/Neob91/dobble/issues"
},
"homepage": "https://github.com/Neob91/dobble#readme",
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}