-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tw-calc-script",
"version": "2.11.6",
"description": "UserScript for online browser game The-West.",
"main": "src/index.ts",
"scripts": {
"build": "cross-env ENV=prod rollup --config",
"build:dev": "cross-env ENV=dev rollup --config",
"build:dev:copy-script": "npm run build:dev && pbcopy < dist/TW_Calc.user.js",
"dev": "rollup -w --config",
"karma": "karma start --single-run",
"lint": "npm run prettier:lint && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"eslint": "eslint -c .eslintrc --ext .ts .",
"eslint:fix": "eslint --fix -c .eslintrc --ext .ts .",
"prettier": "prettier \"**/*.{ts,js,json,md}\"",
"prettier:fix": "npm run prettier -- --write",
"prettier:lint": "npm run prettier -- --list-different",
"test": "npm run test:generate-index && cross-env ENV=test karma start --single-run",
"test:generate-index": "node scripts/test-index.js",
"tsc": "tsc --project tsconfig.json --noEmit",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-West-Scripts/TW-Calc-Script.git"
},
"author": "timzatko",
"contributors": [
"TomRobert"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/The-West-Scripts/TW-Calc-Script/issues"
},
"homepage": "https://github.com/The-West-Scripts/TW-Calc-Script#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jasmine": "^3.6.0",
"@types/jquery": "^3.5.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"babel-plugin-search-and-replace": "^1.1.0",
"cross-env": "^7.0.2",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"glob": "^7.1.6",
"husky": "^8.0.1",
"jasmine-core": "^4.4.0",
"jquery": "^3.5.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^5.1.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-spec-reporter": "^0.0.34",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "^2.48.0",
"rollup-plugin-terser": "^7.0.2",
"run-all": "^1.0.1",
"ts-essentials": "^7.0.3",
"ts-mocks": "^3.0.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.12.1",
"core-js": "^3.6.5",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "^0.13.7",
"tslib": "^2.2.0",
"tsyringe": "^4.3.0"
}
}