-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.65 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
{
"name": "skift",
"description": "Split testing tool for the Web",
"version": "4.4.0",
"author": "Trustpilot A/S",
"homepage": "https://github.com/trustpilot/skift#readme",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/trustpilot/skift.git"
},
"bugs": {
"url": "https://github.com/trustpilot/skift/issues"
},
"scripts": {
"build": "npm run clean && npm run build:dev && npm run build:ts && npm run build:prod",
"build:dev": "webpack-cli --config ./config/webpack.dev.js",
"build:prod": "webpack-cli --config ./config/webpack.prod.js",
"build:ts": "tsc --project . && copyup ./src/**/*.svg ./src/**/*.css lib",
"clean": "rimraf lib/ dist/ types/ yarn-error.log npm-debug.log",
"lint": "tslint 'src/**/*.ts' --project ./",
"lint:fix": "tslint 'src/**/*.ts' --project ./ --fix",
"start": "webpack-dev-server --config ./config/webpack.dev.js",
"test": "jest --config ./config/jest.config.js",
"ts": "tsc"
},
"dependencies": {
"querystringify": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^24.0.18",
"@types/node": "^20.12.12",
"ajv": "^6.10.2",
"copyfiles": "^2.1.1",
"css-loader": "^7.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^3.0.5",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^3.0.0",
"semantic-release": "^19.0.5",
"terser-webpack-plugin": "^2.1.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"tslint": "^5.20.0",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"to-string-loader": "^1.2.0"
},
"files": [
"dist",
"src",
"types",
"lib",
"images",
"styles"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore: release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
],
"preset": "angular"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS --extends @commitlint/config-conventional"
}
}
}