-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.02 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
68
69
70
71
{
"name": "@vibbioinfocore/phylio",
"version": "1.1.2",
"description": "Read, write, and manipulate phylogenetic trees",
"main": "dist/index.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"build:debug": "spago -x javascript.dhall build && node ./build-debug.js",
"build:prod": "spago -x javascript.dhall build -u '-o ps_output --codegen corefn' && purs-backend-es build --int-tags --corefn-dir ps_output --output-dir output && node ./build.js && npm-dts generate --entry js/main.ts -L debug -o dist/index.d.ts",
"test": "spago -x test.dhall test && npm run js:test",
"js:test": "spago -x javascript.dhall build && ava",
"lint": "tsc --noEmit && eslint 'js/**/*.ts' 'test/js/**/*.ts'",
"check:format": "purs-tidy check src/**/*.purs js/**/*.purs test/**/*.purs && prettier --check js/**/*.ts js/**/*.js test/js/**/*.ts",
"clean": "rm -rf output/ dce-output/ ps_output/ dist/ .pulp-cache/ .spago/ bower_components/ node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vibbits/phylio.git"
},
"keywords": [
"phylogeny",
"tree",
"network",
"Newick",
"NHX",
"PhyloXML",
"NEXUS",
"Purescript",
"Typescript"
],
"author": "James Collier",
"license": "MIT",
"bugs": {
"url": "https://github.com/vibbits/phylio/issues"
},
"homepage": "https://github.com/vibbits/phylio#readme",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"devDependencies": {
"@eslint/js": "9.9.0",
"@types/eslint__js": "8.42.3",
"ava": "6.1.3",
"esbuild": "0.23.1",
"eslint": "9.9.0",
"npm-dts": "1.3.13",
"prettier": "3.3.3",
"purescript": "0.15.15",
"purs-backend-es": "1.4.2",
"purs-tidy": "0.11.0",
"spago": "0.21.0",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "8.2.0"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"prettier": {
"trailingComma": "all"
}
}