-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.29 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
{
"name": "@datkt/flat-tree",
"version": "0.3.0",
"description": "Kotlin port of @mafintosh's flat-tree functions to map a binary tree to a list.",
"directories": {},
"scripts": {
"postinstall": "npm run build",
"build": "npm run build-util && npm run build-tree && npm run build-iterator",
"build-util": "konanc util.kt -p library -o util",
"build-tree": "konanc tree.kt $(konanc-config -clr util.kc) -p library -o tree",
"build-iterator": "konanc iterator.kt $(konanc-config -clr util.kc) -p library -o iterator",
"test": "konanc test/ $(konanc-config -clr test.kc) -o test.kexe && ./test.kexe",
"changelog": "conventional-changelog --same-file --preset angular --release-count 0 --infile CHANGELOG.md",
"version": "npm run changelog && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datkt/flat-tree.git"
},
"keywords": [
"kotlin",
"flat-tree"
],
"author": "Vanessa Pyne [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/datkt/flat-tree/issues"
},
"homepage": "https://github.com/datkt/flat-tree#readme",
"dependencies": {
"@datkt/konanc-config": "^5.3.0"
},
"devDependencies": {
"@datkt/tape": "^0.6.1",
"conventional-changelog-cli": "^2.0.5"
}
}