-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 875 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
{
"name": "@isaacguerreiro/polyjs",
"version": "0.0.5",
"main": "build/src/index.js",
"scripts": {
"start": "yarn go && yarn build && node ./build/src/index",
"build": "rm -rf ./build && tsc",
"dev": "yarn go && yarn dev:run",
"dev:run": "ts-node src/inde.x",
"go": "yarn go:clean && yarn go:build",
"go:build": "gopherjs build -o ./src/index.js",
"go:clean": "find ./src -name '*.js' -o -name '*.map' | xargs rm -f",
"test:mock": "ts-node ./tests/genbank.test",
"types:generate": "tygo generate"
},
"author": "isaacguerreir <[email protected]>",
"types": "src/index.d.ts",
"license": "MIT",
"keywords": [
"bioinformatics",
"synthetic-biology",
"synbio",
"genetic-engineering"
],
"devDependencies": {
"@types/node": "^18.11.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}