-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
52
{
"name": "tsoption",
"version": "0.6.0",
"description": "Correct, easy to use Option type for TypeScript",
"keywords": [
"adt",
"algebra",
"algebraic data type",
"haskell",
"option",
"optional",
"maybe",
"monad",
"fantasy",
"fantasyland",
"functor",
"sanctuary",
"scala",
"typescript",
"type",
"typesafe",
"null",
"safe"
],
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bcherny/tsoption.git"
},
"scripts": {
"build": "npm run clean && npm run lint && tsc -d",
"clean": "rm -f ./index.d.ts ./test.d.ts ./*.js.map ./*.js",
"lint": "tslint -p ./tsconfig.json *.ts",
"prepublish": "npm test",
"pretest": "npm run build",
"tdd": "npm run clean && concurrently -k 'npm run test:watch' 'npm run watch'",
"test": "ava",
"test:watch": "ava -w",
"watch": "tsc -w"
},
"author": "Boris Cherny <[email protected]> (https://performancejs.com)",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"concurrently": "^3.5.1",
"fantasy-land": "^3.5.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"dependencies": {}
}