-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
{
"name": "fp-ts-sized-vectors",
"homepage": "https://github.com/no-day/fp-ts-sized-vectors",
"version": "0.1.0",
"main": "dist/index.js",
"license": "MIT",
"peerDependencies": {
"fp-ts": "^2.9.5"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.20",
"docs-ts": "^0.6.5",
"fast-check": "^2.13.0",
"fp-ts": "^2.10.5",
"fp-ts-number-instances": "^1.0.0",
"jest": "^26.6.3",
"markdown": "^0.5.0",
"markdown-magic": "^2.0.0",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.13",
"ts-jest": "^26.5.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
},
"scripts": {
"test": "yarn jest",
"test:watch": "yarn jest --watch",
"build": "yarn tsc -p tsconfig.build.json",
"build:watch": "yarn tsc --watch -p tsconfig.build.json",
"prepublish": "yarn build",
"docs": "yarn docs-ts",
"docs:watch": "while inotifywait -e close_write src; do yarn docs; done",
"md": "yarn markdown --config ./markdown.config.js",
"md:watch": "while inotifywait -e close_write README.md; do yarn md; done",
"docs-preview:watch": "cd docs; bundle exec jekyll serve --livereload",
"docs-preview": "cd docs; bundle exec jekyll serve",
"ts-node_": "ts-node -r tsconfig-paths/register",
"example": "yarn ts-node_ examples"
}
}