-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.43 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
{
"name": "linqts",
"version": "1.0.0",
"description": "An api for lazy querying of iterables, implemented in TypeScript and inspired by .NET's LINQ methods.",
"main": "app.js",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"typedoc": "0.20.36",
"typescript": "^4.1.3"
},
"scripts": {
"build": "rimraf ./build && tsc -p .",
"test-mocha": "nyc --reporter=html --reporter=lcovonly mocha ./build/test/**/*.spec.js",
"test": "npm run build && npm run test-mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint \"./src/**/*.ts\"",
"lint-fix": "eslint ./**/*.ts --fix"
},
"author": "Deyan Boikliev",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/dboikliev/LinqTS.git"
},
"bugs": {
"url": "https://github.com/dboikliev/LinqTS/issues"
},
"homepage": "https://github.com/dboikliev/LinqTS#readme"
}