-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 821 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 821 Bytes
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
{
"name": "ts-fp-examples",
"version": "1.0.0",
"description": "Functional programming paradigm example in Typescript.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc -w",
"build": "tsc",
"start": "yarn build && node build/index.js"
},
"repository": "git+https://github.com/itaied246/ts-fp-examples.git",
"author": "Itai Edri <itaied246@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/itaied246/ts-fp-examples/issues"
},
"homepage": "https://github.com/itaied246/ts-fp-examples#readme",
"dependencies": {
"ramda": "^0.23.0",
"ramda-fantasy": "^0.8.0",
"tsc": "^1.20150623.0",
"typescript": "^2.3.2",
"yarn": "^0.22.0"
},
"devDependencies": {
"@types/ramda": "^0.0.7"
}
}