-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.87 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
{
"name": "async-ray",
"description": "Allow perform every, filter, find, findIndex, forEach, map, reduce, reduceRight and some on array using Async callback",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "3.2.0",
"scripts": {
"pretest": "npm run build",
"test": "nyc mocha",
"test-coverage-report": "npm test && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage",
"build": "tsc",
"format": "prettier --write \"**/*.ts\" \"**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A lib",
"postversion": "git push && git push --tags",
"doc-gen": "typedoc --out doc --theme minimal `find test -name '*.ts' -not -path '*test*' -not -path '*dist*'`",
"sample": "ts-node examples/chain_sample_1.ts && ts-node examples/chain_sample_2.ts"
},
"author": "Ruwan Geeganage",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^5.2.5",
"axios": "^0.21.1",
"codacy-coverage": "^3.3.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^1.14.3",
"should": "^13.2.3",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "git://github.com/rpgeeganage/async-ray.git"
},
"dependencies": {},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test/*.ts",
"examples/*.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"keywords": [
"Array",
"Async/Await",
"async/await",
"array",
"ES2017"
]
}