-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
98 lines (98 loc) · 2.79 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
{
"name": "farce",
"version": "0.4.5",
"description": "History repeats itself",
"keywords": [
"history"
],
"homepage": "https://github.com/4Catalyzer/farce#readme",
"bugs": {
"url": "https://github.com/4Catalyzer/farce/issues"
},
"license": "MIT",
"author": "4Catalyzer",
"files": [
"lib"
],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/4Catalyzer/farce.git"
},
"scripts": {
"build": "rimraf lib && 4c build --types false src && npm run build:pick && npm run build:types",
"build:pick": "cherry-pick --cjs-dir cjs --esm-dir esm --cwd lib ../src",
"build:types": "cpy types/*.d.ts lib",
"format": "4c format --prettier-ignore .eslintignore .",
"lint": "4c lint --prettier-ignore .eslintignore .",
"prepublish": "npm run build",
"release": "4c release",
"tdd": "cross-env NODE_ENV=test karma start",
"test": "npm run lint && npm run test:ts && npm run testonly",
"test:ts": "dtslint types",
"testonly": "npm run tdd -- --single-run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "yarn 4c lint --fix --prettier-ignore .eslintignore",
"README.md": "doctoc"
},
"prettier": "@4c/prettier-config",
"dependencies": {
"query-string": "^5.1.1",
"redux": "^4.1.2"
},
"devDependencies": {
"@4c/babel-preset": "^9.1.0",
"@4c/cli": "^3.0.1",
"@4c/prettier-config": "^1.1.0",
"@babel/core": "^7.17.10",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-loader": "^8.2.5",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.6",
"cherry-pick": "^0.5.0",
"codecov": "^3.8.3",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"delay": "^4.4.1",
"dirty-chai": "^2.0.1",
"doctoc": "^2.2.0",
"dtslint": "^4.2.1",
"eslint-config-4catalyzer": "^1.4.1",
"eslint-config-4catalyzer-typescript": "^3.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.8",
"karma": "^6.3.19",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"lint-staged": "^12.4.1",
"mocha": "^9.2.2",
"p-defer": "^3.0.0",
"prettier": "^2.6.2",
"puppeteer": "^13.7.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"webpack": "^5.72.1"
},
"publishConfig": {
"directory": "lib"
}
}