-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 975 Bytes
/
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
{
"name": "scope-utilities",
"version": "2.0.0",
"description": "Bringing Kotlin's scope functions to JavaScript / TypeScript (and maybe adding a few more nice-to-haves).",
"keywords": [
"scope",
"function",
"kotlin"
],
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"author": {
"name": "Omran Jamal",
"email": "omran@omranjamal.me",
"url": "https://omranjamal.me"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "mocha -r ts-node/register tests/**/*.test.mts"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "20.5.0",
"chai": "^4.3.7",
"concurrently": "^8.0.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/omranjamal/scope-utilities.git"
}
}