-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "utility-library",
"version": "0.0.1",
"description": "A set of JavaScript utils",
"scripts": {
"compile": "npm run lint && rm -rf dist/lib && tsc && tsc --build tsconfig.es5.json",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarektarho/utility-library.git"
},
"keywords": [
"javascript",
"utils",
"utilities"
],
"author": "Tarek Tarho",
"license": "MIT",
"bugs": {
"url": "https://github.com/tarektarho/utility-library/issues"
},
"homepage": "https://github.com/tarektarho/utility-library#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"coveralls": "^3.1.0",
"ejs": "^3.1.5",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"js-htmlencode": "^0.3.0",
"jsdoc-parse-plus": "^1.3.0",
"nyc": "^15.1.0",
"typescript": "^4.1.3"
}
}