generated from oliver021/ts-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "ecmalinq",
"version": "1.0.9",
"description": "The complete and awesome linq api for javascript/typescript",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"private": false,
"scripts": {
"build": "tsc -p ./",
"dev": "tsc -p ./ -w",
"test": "npm run build:test && npm run run:test",
"build:test": "tsc -p ./test",
"run:test": "mocha ./.test-dist/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliver021/ecmalinq.git"
},
"keywords": [
"javascript",
"typescript",
"functional",
"pipe",
"function",
"helper"
],
"author": "Oliver Valiente",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliver021/ecmalinq/issues"
},
"homepage": "https://github.com/oliver021/ecmalinq#readme",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/clone": "^2.1.0",
"@types/deep-equal": "^1.0.1",
"@types/extend": "^3.0.1",
"@types/mocha": "^5.2.7",
"chai": "^4.3.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
},
"dependencies": {
"clone": "^2.1.2",
"deep-equal": "^2.0.5",
"extend": "^3.0.2"
}
}