-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "prray",
"version": "0.8.2",
"description": "'Promisified' Array, it compatible with the original Array but comes with async versions of native Array methods, such as `mapAsync`, `filterAsync`, `reduceAsync`, `sortAsync`, `findAsync`, `findIndexAsync`, `everyAsync`, `someAsync`, `forEachAsync`...",
"main": "./dist/src/index",
"typings": "./dist/src/index.d.ts",
"scripts": {
"test": "rm -rf dist && npm run compile && nyc ava ./dist/test/*.test.js",
"compile": "tsc",
"prettier": "prettier --config .prettierrc --write '**/*.ts'",
"prepublish": "npm run prettier && npm run test"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --config .prettierrc --write '**/*.ts'",
"pre-push": "npm run prettier && npm run test"
}
},
"repository": "Bin-Huang/prray",
"homepage": "https://github.com/Bin-Huang/prray",
"keywords": [
"promise",
"promisified",
"array",
"async",
"p",
"concurrency",
"bluebird"
],
"author": "Ben Huang",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@types/sinon": "^7.5.0",
"ava": "^4.3.0",
"husky": "^3.0.7",
"nyc": "^15.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"sinon": "^7.4.2",
"source-map-support": "^0.5.21",
"typescript": "^3.9.10"
},
"files": [
"README.md",
"package.json",
"LICENSE.md",
"dist/src"
]
}