forked from Starrah/scope-extensions-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 970 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
40
41
42
43
44
{
"name": "@starrah/scope-extensions-js",
"version": "2.1.0",
"description": "Package for using Kotlin's Scope Function Extensions on JavaScript and TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Starrah/scope-extensions-js.git"
},
"keywords": [
"kotlin",
"scope",
"functions",
"extensions",
"scoping",
"let",
"also",
"run",
"apply",
"with"
],
"author": "TheDavidDelta",
"license": "MIT",
"bugs": {
"url": "https://github.com/Starrah/scope-extensions-js/issues"
},
"homepage": "https://github.com/Starrah/scope-extensions-js#readme",
"devDependencies": {
"typescript": "^3.8.3",
"jest": "^23.6.0",
"@types/jest": "^23.3.14",
"ts-jest": "^23.10.5",
"braces": ">=2.3.1"
},
"files": [
"dist/**/*",
"img/logo.png"
]
}