-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
87 lines (87 loc) · 2.44 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
80
81
82
83
84
85
86
87
{
"name": "monocle-ts",
"version": "2.2.0",
"description": "A porting of scala monocle library to TypeScript",
"files": [
"lib",
"es6"
],
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "tslint -p .",
"jest": "jest",
"jest-coverage": "jest --ci --coverage",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test,examples}/**/*.ts\"",
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test,examples}/**/*.ts\"",
"test": "npm run prettier && npm run lint && npm run dtslint && npm run jest && npm run docs",
"clean": "rimraf lib/* es6/*",
"build": "npm run clean && tsc && tsc -p tsconfig.es6.json && npm run import-path-rewrite",
"prepublish": "npm run build",
"docs-fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser markdown --write \"README.md\"",
"dtslint": "dtslint dtslint",
"mocha": "TS_NODE_CACHE=false mocha -r ts-node/register test/*.ts",
"docs": "docs-ts",
"import-path-rewrite": "import-path-rewrite"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/monocle-ts.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/monocle-ts/issues"
},
"homepage": "https://github.com/gcanti/monocle-ts",
"peerDependencies": {
"fp-ts": "^2.0.0"
},
"devDependencies": {
"@types/jest": "22.2.2",
"@types/node": "7.0.4",
"docs-ts": "^0.5.0",
"dtslint": "github:gcanti/dtslint",
"fp-ts": "^2.0.0",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "^24.3.0",
"mocha": "^5.2.0",
"prettier": "^2.0.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.9.3"
},
"tags": [
"typescript",
"functional-programming",
"optics",
"lens",
"fp-ts"
],
"keywords": [
"typescript",
"functional-programming",
"optics",
"lens",
"fp-ts"
],
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test",
"moduleFileExtensions": [
"ts",
"js"
],
"testPathIgnorePatterns": [
"helpers.ts"
]
}
}