-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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/stacks-helpers",
"description": "A collection of helper functions to work with Stacks design",
"version": "1.1.2",
"author": {
"name": "Oleg Valter",
"email": "[email protected]"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src --fix --ext .js,.ts",
"build": "npm run lint && node build.js && tsc",
"readme": "generate-readme",
"postversion": "bash ./scripts/postversion.sh",
"test": "TS_NODE_PROJECT='./test/tsconfig.json' mocha test/**/*.spec.ts*"
},
"repository": {
"type": "git",
"url": "[email protected]:userscripters/stacks-helpers.git"
},
"bugs": {
"url": "https://github.com/userscripters/stacks-helpers/issues"
},
"contributors": [
{
"name": "double beep",
"url": "https://github.com/double-beep"
}
],
"keywords": [
"Stacks",
"Stack Exchange",
"Stack Overflow",
"design",
"helper"
],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@userscripters/generate-readme": "^3.0.2",
"chai": "^5.1.2",
"esbuild": "^0.24.2",
"eslint": "^8.57.1",
"jsdom": "^24.1.3",
"mocha": "^10.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"type": "module"
}