This repository has been archived by the owner on Jul 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "linqable.ts",
"version": "1.7.22",
"description": "LINQ implementation library for TypeScript",
"main": "./lib/Extensions.js",
"author": "Yuuki Wesp",
"license": "MIT",
"private": false,
"markdown": "github",
"preview": false,
"displayName": "Linqable.ts",
"jsdelivr": "./lib/web/linq.min.js",
"keywords": [
"typescript",
"linq",
"linqjs",
"csharp",
"query",
"lang",
"linqable",
"enumerable",
"functional programming",
"microsoft",
"dotnet",
".net",
"csharp-linq"
],
"bugs": {
"url": "https://github.com/Linqable/lib/issues"
},
"homepage": "https://Linqable.github.io/lib/",
"scripts": {
"build": "yarn build:node && yarn build:web && yarn build:web:dev",
"build:node": "tsc",
"build:web:dev": "webpack --env development",
"build:web": "webpack --env production",
"test": "ava test/**/*.test.ts --verbose",
"test-nya": "ava test/**/*.test.ts --tap | tap-nyan",
"report-test": "yarn nyc --reporter=lcov --reporter=text-lcov ava test/**/*.test.ts",
"trace-test": "node --trace-deopt ./node_modules/.bin/ava NODE_ENV=test ./test/perf.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Linqable/lib.git"
},
"devDependencies": {
"@types/node": "^10.9.4",
"ava": "^1.0.0-beta.8",
"node-ts": "^2.1.2",
"nyc": "^13.0.1",
"source-map-support": "^0.5.9",
"tap-nyan": "^1.1.0",
"ts-loader": "^5.1.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.3",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
},
"typings": "lib/index.d.ts",
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.js",
"test"
],
"reporter": [
"html",
"lcov",
"text"
],
"all": true,
"cache": true
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}