forked from gcanti/fp-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.58 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
{
"name": "fp-ts",
"version": "0.6.0-dev.20171016",
"description": "Functional programming in TypeScript",
"files": ["lib"],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "tslint src/**/*.ts test/**/*.ts examples/**/*.ts exercises/**/*.ts",
"mocha": "mocha -r ts-node/register test/*.ts",
"prettier":
"prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test,examples,exercises}/**/*.ts\"",
"fix-prettier":
"prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test,examples,exercises}/**/*.ts\"",
"test": "npm run lint && npm run prettier && npm run mocha",
"clean": "rm -rf lib/*",
"build": "npm run clean && tsc",
"docs": "rm -rf docs/api/md/* && ts-node docs/api/toMarkdown.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/fp-ts.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/fp-ts/issues"
},
"homepage": "https://github.com/gcanti/fp-ts",
"dependencies": {},
"devDependencies": {
"@types/mocha": "2.2.38",
"@types/node": "7.0.4",
"mocha": "3.2.0",
"prettier": "1.7.0",
"ts-node": "3.1.0",
"tslint": "4.4.2",
"tslint-config-standard": "4.0.0",
"typescript": "2.6.0-rc"
},
"tags": ["typescript", "static-land", "fantasy-land", "algebraic-data-types", "functional-programming"],
"keywords": ["typescript", "static-land", "fantasy-land", "algebraic-data-types", "functional-programming"]
}