generated from wikimedia-gadgets/twinkle-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.08 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
{
"name": "twinkle-azwiki",
"version": "1.0.0",
"description": "",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js --ext .ts",
"lint:fix": "eslint . --ext .js --ext .ts --fix",
"build": "grunt build",
"quickbuild": "webpack",
"start": "node scripts/server.js",
"test:prod": "webpack && jest",
"test": "env DEBUG=true webpack && jest -i",
"test:unit": "webpack && jest --selectProjects unit",
"test:integration": "webpack && jest --selectProjects integration",
"test:integration:setup": "npm i --no-save [email protected] && cd tests/integration/docker && bash main.sh",
"test:integration:teardown": "cd tests/integration/docker && docker-compose down"
},
"repository": {
"type": "git",
"url": "git://github.com/nemoralis/twinkle-azwiki.git"
},
"author": "nemoralis",
"license": "CC-BY-SA-3.0",
"homepage": "https://github.com/nemoralis/twinkle-azwiki",
"sideEffects": [
"src/globals.ts"
],
"dependencies": {
"tslib": "2.6.2",
"twinkle-core": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^9.1.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.0",
"diff": "^5.0.0",
"eslint": "^7.24.0",
"grunt": "1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-replace": "^2.0.2",
"grunt-webpack": "^6.0.0",
"husky": "^4.3.7",
"jest": "^26.6.3",
"jest-playwright-preset": "^1.5.1",
"lint-staged": "^10.5.3",
"minimist": "1.2.8",
"mock-mediawiki": "^1.0.1",
"mwn": "^0.10.4",
"prettier": "^2.2.1",
"prompts": "^2.4.1",
"ts-jest": "^26.5.5",
"ts-loader": "8.0.13",
"typescript": "4.1.2",
"webpack": "5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts(x)?": "prettier --write"
}
}