-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.21 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.21 KB
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
{
"name": "@toolsplus/json-evolutions",
"version": "1.0.3",
"description": "JSON evolutions",
"main": "build/main/index.js",
"module": "build/module/index.js",
"typings": "build/main/index.d.ts",
"repository": "https://github.com/toolsplus/json-evolutions",
"author": "Tobias Binna <tobias.binna@toolsplus.io>",
"license": "MIT",
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/__fixtures__/**",
"!**/__mocks__/**",
"!**/*.json",
"README.md"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prepare": "husky install",
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --write",
"fix:lint": "eslint src test --ext .ts --fix",
"lint": "eslint src test --ext .ts",
"prettier": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --list-different",
"test": "jest",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "jest --silent --watch",
"doc": "run-s doc:html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --json build/docs/typedoc.json",
"prepare-release": "run-s build doc:html",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-angular": "17.3.0",
"@relmify/jest-fp-ts": "2.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.5.0",
"fast-check": "3.5.0",
"husky": "^8.0.3",
"jest": "27.5.1",
"jest-junit": "15.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"semantic-release": "19.0.5",
"ts-jest": "27.1.5",
"typedoc": "0.23.23",
"typescript": "4.7.4"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"fp-ts": "^2.13.1",
"immutability-helper": "^3.1.1",
"io-ts": "^2.2.20"
}
}