-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1014 Bytes
/
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
{
"name": "list-masher",
"version": "0.2.1",
"description": "Smash a list of strings together",
"main": "lib/list-masher.js",
"types": "lib/list-masher.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"lint": "eslint '*/**/*.ts'",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smujmaiku/list-masher.git"
},
"author": "Michael Szmadzinski",
"license": "MIT",
"bugs": {
"url": "https://github.com/smujmaiku/list-masher/issues"
},
"homepage": "https://github.com/smujmaiku/list-masher#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"typescript": "^4.0.2"
}
}