-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "csnow",
"version": "1.0.0",
"description": "A Cartesian/SNapshot Object Writing utility.",
"main": "./dist/index.mjs",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"test": "npm run test:jest && npm run test:lint",
"test:jest": "jest",
"test:lint": "npm run lint -- --max-warnings=1",
"build": "node build.js",
"build:publish": "rm -rf dist && npm run build && tsc",
"prerelease": "npm test && npm run build:publish",
"release": "release-it",
"release:dry": "release-it --dry-run"
},
"type": "module",
"keywords": [
"object",
"cartesian",
"combination",
"oneof",
"kof",
"snapshot",
"testing"
],
"author": "Jake Hamilton ([email protected])",
"license": "Unlicense",
"dependencies": {
"lodash": "^4.17.21",
"ts-combinatorics": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"esbuild": "^0.14.16",
"esbuild-node-externals": "^1.4.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"release-it": "^14.12.4",
"ts-jest": "^27.1.3",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.5.4"
}
}