generated from userscripters/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.89 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
{
"name": "@userscripters/unicode-char-counter",
"version": "0.2.0",
"description": "Teaching SE's character counter how to count",
"scripts": {
"test": "mocha",
"lint": "eslint src --fix --ext .js,.ts",
"clean": "rm -rf dist",
"prebuild": "npm run lint && npm run clean",
"uglify-modern": "uglifyjs dist/modern/* --compress --mangle -o dist/modern/index.min.js",
"uglify-legacy": "uglifyjs dist/legacy/* --compress --mangle -o dist/legacy/index.min.js",
"build-modern": "tsc --outDir dist/modern && npm run uglify-modern",
"build-legacy": "tsc --target es5 --outDir dist/legacy && npm run uglify-legacy",
"build-all": "bash ./scripts/build.sh",
"headers-tm": "bash ./scripts/headers.sh",
"readme": "generate-readme",
"postversion": "bash ./scripts/postversion.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userscripters/unicode-char-counter.git"
},
"keywords": [
"userscripts",
"stackoverflow",
"unicode",
"counter"
],
"author": {
"name": "Oleg Valter",
"email": "[email protected]"
},
"contributors": [],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/userscripters/unicode-char-counter/issues"
},
"homepage": "https://github.com/userscripters/unicode-char-counter#readme",
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/jquery": "^3.5.32",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@userscripters/generate-headers": "^3.5.0",
"@userscripters/generate-readme": "^3.0.2",
"@userscripters/stackexchange-global-types": "^2.8.2",
"chai": "^5.1.2",
"eslint": "^8.57.1",
"mocha": "^10.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"uglify-js": "^3.19.3"
}
}