This repository has been archived by the owner on Jul 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 2.17 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
{
"name": "the-tale-extended",
"fullName": "The Tale Extended",
"author": "standy <mostovoyav@gmail.com>",
"description": "Расширение базового функционала в браузерной игре Сказка",
"version": "0.5.9",
"repository": {
"type": "git",
"url": "https://github.com/standy/the-tale-ext"
},
"bugs": {
"url": "https://github.com/standy/the-tale-ext/issues"
},
"keywords": [
"the tale",
"the tale extended",
"chrome extension",
"userscript"
],
"license": "MIT",
"scripts": {
"release": "standard-version",
"precommit": "lint-staged",
"deploy": "webstore upload --source dist/chrome.zip --auto-publish && conventional-github-releaser -p eslint",
"lint": "eslint **/*.js --fix",
"tslint": "tslint source/**/*.ts --type-check -p tsconfig.json --fix",
"build-chrome": "webpack --config webpack.chrome.config.js",
"build-userscript": "webpack --config webpack.userscript.config.js",
"build": "npm run build-chrome && npm run build-userscript",
"watch": "webpack -w"
},
"lint-staged": {
"*.js": [
"eslint **/*.js"
],
"*.ts": [
"tslint source/**/*.ts --type-check -p tsconfig.json"
]
},
"dependencies": {
"archiver": "^1.3.0",
"autoprefixer": "^7.1.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.0",
"fs-extra": "^3.0.1",
"postcss-custom-properties": "^6.0.1",
"postcss-loader": "^2.0.6",
"postcss-nested": "^2.0.2",
"raw-loader": "^0.5.1",
"style-loader": "^0.18.2",
"ts-loader": "^2.0.1",
"typescript": "^2.2.1",
"url-loader": "^0.5.8",
"webpack": "^3.0.0"
},
"devDependencies": {
"@types/jquery": "^2.0.40",
"chrome-webstore-upload-cli": "^1.1.1",
"conventional-github-releaser": "^1.1.11",
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.13.4",
"lint-staged": "^4.0.0",
"standard-version": "^4.4.0",
"tslint": "^5.4.3",
"tslint-config-standard": "^6.0.1"
}
}