forked from gcanti/fp-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.23 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "fp-ts",
"version": "1.6.2",
"description": "Functional programming in TypeScript",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "tslint -p tsconfig.json src/**/*.ts test/**/*.ts examples/**/*.ts exercises/**/*.ts fantas-eel-and-specification/**/*.ts",
"jest": "jest --ci",
"jest-coverage": "jest --ci --coverage",
"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\"",
"typings": "typings-checker --project ./typings-checker/tsconfig.json ./typings-checker/index.ts",
"test": "npm run lint && npm run prettier && npm run typings && npm run jest",
"clean": "rimraf lib/*",
"build": "npm run clean && tsc",
"docs": "rimraf docs/*.md && ts-node docs-generator/main.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/doctrine": "0.0.3",
"@types/jest": "22.2.2",
"@types/node": "7.0.4",
"@types/prettier": "1.10.0",
"benchmark": "2.1.4",
"chalk": "2.2.0",
"doctrine": "2.0.0",
"jest": "22.4.3",
"prettier": "1.13.4",
"rimraf": "2.6.2",
"ts-jest": "22.4.2",
"ts-simple-ast": "0.74.0",
"tslint": "5.9.1",
"tslint-config-standard": "7.0.0",
"typescript": "2.8.3",
"typings-checker": "2.0.0"
},
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true
}
},
"collectCoverageFrom": [
"src/**/*.{ts}"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test",
"moduleFileExtensions": [
"ts",
"js"
]
}
}