-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.91 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "badbadnotgood",
"version": "1.0.0",
"description": "Functional validation, built for composition",
"author": "Casey Webb <notcaseywebb@gmail.com> (https://caseyWebb.xyz)",
"license": "WTFPL",
"homepage": "https://github.com/caseyWebb/badbadnotgood#readme",
"repository": "git+https://github.com/caseyWebb/badbadnotgood.git",
"bugs": "https://github.com/caseyWebb/badbadnotgood/issues",
"main": "dist/node/index.js",
"module": "dist/default/index.js",
"types": "dist/default/index.d.ts",
"esnext": "dist/esnext/index.js",
"files": [
"dist"
],
"scripts": {
"build": "concurrently \"npm:build:*\"",
"build:node": "tsc --preserveWatchOutput --module commonjs --target es2017 --outDir dist/node --tsBuildInfoFile .cache/node.tsbuildinfo",
"build:default": "tsc --preserveWatchOutput --module esnext --outDir dist/default --tsBuildInfoFile .cache/default.tsbuildinfo",
"build:esnext": "tsc --preserveWatchOutput --module esnext --target esnext --outDir dist/esnext --tsBuildInfoFile .cache/esnext.tsbuildinfo",
"test": "concurrently \"npm:test:*\"",
"test:unit": "jest",
"test:types": "tsd || true",
"lint": "esw --color --ignore-path .gitignore --ext .js,.ts ./",
"format": "pretty-quick",
"release": "standard-version --sign && git push --follow-tags",
"prepare": "husky install"
},
"keywords": [],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": [
"profiscience"
],
"parserOptions": {
"project": [
"./tsconfig.json",
"./test/tsconfig.json"
]
}
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"coverageReporters": [
"lcov",
"html"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/test/**",
"!**/*-d.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"tsd": {
"directory": "test"
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true
},
"dependencies": {
"tslib": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.161",
"@types/node": "^17.0.5",
"commitlint": "^16.0.1",
"concurrently": "^7.0.0",
"cz-conventional-changelog": "^3.0.2",
"date-fns": "^2.16.1",
"eslint": "^8.5.0",
"eslint-config-profiscience": "^7.0.1",
"eslint-watch": "^8.0.0",
"husky": "^7.0.0",
"jest": "^27.4.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.0.0",
"tsd": "^0.19.0",
"typescript": "^4.0.3"
}
}