forked from kutyel/linq.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.91 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
{
"name": "linqts",
"version": "1.14.0",
"description": "LinQ + TypeScript",
"es2015": "index.ts",
"source": "index.ts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"check-coverage": "nyc check-coverage --statements 100 --branches 97 --functions 98 --lines 100",
"commit": "git-cz",
"cover": "nyc --require esm --reporter=lcov npm t",
"docs": "typedoc --out ../docs/ src/index.ts -m commonjs -t ES6",
"nyan": "ava --tap | tap-nyan",
"prebuild": "rimraf dist",
"pretty": "prettier src/*.ts --write",
"test": "tsc && nyc ava",
"validate": "npm run cover && npm run check-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/kutyel/linq.ts.git"
},
"keywords": [
"linq",
"typescript"
],
"files": [
"dist",
"linq.ts",
"readme.md"
],
"author": {
"name": "Flavio Corpa",
"email": "flaviocorpa@gmail.com",
"url": "https://github.com/kutyel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kutyel/linq.ts/issues"
},
"homepage": "https://github.com/kutyel/linq.ts#readme",
"dependencies": {},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"ava": "^0.25.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"esm": "^3.2.25",
"ghooks": "^2.0.4",
"nyc": "^12.0.2",
"prettier": "^1.13.7",
"rimraf": "^2.6.2",
"tap-nyan": "^1.1.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^7.1.0",
"typedoc": "^0.17.6",
"typescript": "^3.9.6"
},
"config": {
"ghooks": {
"pre-commit": "npm run validate"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"esm"
]
}
}