forked from cbowdon/TsMonad
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 940 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
31
32
33
34
35
36
37
38
{
"name": "tsmonad",
"version": "0.5.2",
"description": "TsMonad - fun-size monads library for TypeScript",
"main": "dist/tsmonad.js",
"typings": "dist/tsmonad.d.ts",
"files": [ "dist", "*.ts", "LICENSE-MIT", "README.md" ],
"directories": {},
"scripts": {
"build": "grunt",
"prepublish": "grunt",
"test": "echo \"Please open test/index.html in your browser\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/cbowdon/TsMonad.git"
},
"keywords": [
"typescript",
"monad",
"functional"
],
"author": {
"name": "Chris Bowdon",
"url": "https://github.com/cbowdon"
},
"license": "MIT",
"devDependencies": {
"blanket": "^1.1.6",
"grunt": "^0.4.5",
"grunt-banner": "^0.4.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-typescript": "^0.8.0",
"qunitjs": "^1.15.0",
"underscore": "^1.7.0"
}
}