-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.37 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
{
"name": "node-kt",
"version": "0.1.0",
"description": "Kotlin2Js bindings for the node.js standard library.",
"main": "node-kt.js",
"author": "Kaidan Gustave",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Shengaero/node-kt.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Shengaero/node-kt/issues"
},
"keywords": [
"kotlin",
"kotlin2js"
],
"scripts": {
"test": "jest"
},
"jest": {
"roots": [
"<rootDir>/build/classes/kotlin/test/"
],
"testMatch": [
"**/node-kt_test.js"
],
"modulePaths": [
"/build/node_modules/"
],
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"pageTitle": "Tests for node-kt",
"outputPath": "./build/reports/jest/index.html",
"theme": "darkTheme",
"includeConsoleLog": true
}
]
],
"testURL": "http://localhost/",
"browser": true,
"verbose": true,
"testEnvironment": "jsdom"
},
"files": [
"**/**/*.kjsm",
"*.js",
"*.js.map",
"*.meta.js",
"LICENSE",
"package.json",
"README.md"
],
"devDependencies": {
"jest": "^23.5.0",
"jest-html-reporter": "^2.4.2",
"kotlin": "^1.2.60"
},
"peerDependencies": {
"kotlin": "^1.2.60"
}
}