-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 941 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 941 Bytes
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
{
"name": "ez-each",
"version": "1.0.2",
"description": "Replacement for JavaScript's forEach implementation; synchronous & compatible with TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/.bin/tsc --outDir dist --lib es5 index.ts --declaration",
"exectest": "./node_modules/.bin/mocha -r ts-node/register test.ts",
"test": "npm run build && npm run exectest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ez-libs/ez-each.git"
},
"keywords": [
"typescript",
"javascript",
"foreach"
],
"author": "ez-libs",
"license": "MIT",
"bugs": {
"url": "https://github.com/ez-libs/ez-each/issues"
},
"homepage": "https://github.com/ez-libs/ez-each#readme",
"dependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"mocha": "^9.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.3"
},
"files": ["dist"]
}