-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
33
34
35
36
37
38
39
40
41
{
"name": "barcart",
"version": "0.1.2",
"description": "find cocktails based on what you have",
"main": "index.js",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryelo/barcart.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryelo/barcart/issues"
},
"homepage": "https://github.com/ryelo/barcart#readme",
"devDependencies": {
"@types/node": "^14.14.31",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"chai": "^4.3.4",
"eslint": "^7.20.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@types/string-similarity": "^4.0.0",
"string-similarity": "^4.0.4"
}
}