-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
84 lines (84 loc) · 2.58 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
{
"name": "mson",
"version": "0.0.0-development",
"description": "MSON Lang: Generate an app from JSON",
"author": "Geoff Cox",
"license": "Apache-2.0",
"main": "lib/index.js",
"dependencies": {
"country-telephone-data": "^0.6.3",
"date-fns": "^2.15.0",
"events": "^3.2.0",
"mingo": "^6.0.4",
"text-mask-addons": "^3.8.0",
"uuid": "^9.0.0",
"vanilla-text-mask": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^18.0.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"commitizen": "^4.2.3",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.7",
"lint-staged": "^13.0.0",
"prettier": "^2.2.1",
"semantic-release": "^19.0.2",
"source-map-loader": "^4.0.0",
"ts-jest": "^28.0.7",
"ts-loader": "^9.2.6",
"typescript": "^5.0.2",
"webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^5.0.1"
},
"lint-staged": {
"src/**/*.{js,ts,json,css}": [
"prettier --write"
]
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0 src",
"just-test": "jest --env=jsdom --maxWorkers=3 --testPathPattern='^((?!performance).)*test.(j|t)s$'",
"just-test:watch": "yarn just-test --watch",
"just-test:debug": "yarn just-test:watch --inspect-brk --runInBand --no-cache",
"test:performance": "jest --env=jsdom --maxWorkers=1 --testPathPattern='performance.test.(j|t)s$'",
"test:coverage": "yarn just-test --coverage",
"test": "yarn lint && yarn test:coverage && yarn test:performance",
"copy-json": "copyfiles -u 1 src/**/*.json lib",
"compile": "tsc && yarn copy-json",
"bundle": "webpack",
"touch": "find src -exec touch {} \\;",
"analyze-bundle": "webpack --json > ./dist/stats.json && webpack-bundle-analyzer ./dist/stats.json",
"prepublishOnly": "cross-env NODE_OPTIONS=--openssl-legacy-provider && yarn compile && yarn bundle",
"semantic-release": "semantic-release",
"prepare": "git config core.hooksPath ./git-hooks"
},
"repository": {
"type": "git",
"url": "https://github.com/redgeoff/mson.git"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"release"
]
}
}