-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 843 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": "exploring-fp-ts-series",
"version": "1.0.0",
"description": "Supporting code for the Exploring fp-ts series",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register --recursive './src/**/*.ts'",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davetayls/exploring-fp-ts-series.git"
},
"author": "Dave Taylor <davetayls.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davetayls/exploring-fp-ts-series/issues"
},
"homepage": "https://github.com/davetayls/exploring-fp-ts-series#readme",
"dependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.4",
"@types/sinon": "^4.3.1",
"fp-ts": "^1.4.1",
"mocha": "^5.1.1",
"sinon": "^5.0.6",
"ts-node": "^6.0.3",
"typescript": "^2.8.3"
}
}