forked from remeda/remeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.6 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
{
"name": "ts-prime",
"version": "1.0.2",
"description": "A utility library for JavaScript and Typescript.",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"sideEffects": false,
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"marked": "^0.4.0",
"prettier": "^2.0.1",
"ts-docflux": "^0.0.13",
"ts-jest": "^22.4.5",
"ts-node": "^8.4.1",
"typedoc": "0.11.1",
"typescript": "^3.8.3"
},
"scripts": {
"prepublish": "yarn test && yarn build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prettier": "prettier 'src/**/*.ts' --write",
"build": "cd ./scripts && ./build.sh && yarn ts-docflux"
},
"repository": {
"type": "git",
"url": "https://github.com/digimuza/ts-prime"
},
"tsDocFluxConfig": {
"mainEntryPointFilePath": "./dist/commonjs/index.d.ts"
},
"keywords": [
"utils",
"fp",
"functional",
"programming",
"typescript"
],
"author": "Andrius Mozūraitis",
"license": "MIT",
"bugs": {
"url": "https://github.com/digimuza/ts-prime/issues"
},
"homepage": "https://digimuza.github.io/ts-prime",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"coverageDirectory": "./docs/coverage",
"testRegex": "/src/.*.test.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"collectCoverageFrom": [
"src/**/*.tsx",
"src/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}